koel/app/Http/Requests/API/PlaylistStoreRequest.php

21 lines
360 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Http\Requests\API;
/**
2020-12-22 20:11:22 +00:00
* @property array<string> $songs
2018-11-25 21:21:46 +00:00
* @property string $name
* @property array $rules
*/
2015-12-13 04:42:28 +00:00
class PlaylistStoreRequest extends Request
{
2020-12-22 20:11:22 +00:00
/** @return array<mixed> */
2018-08-30 03:11:47 +00:00
public function rules(): array
2015-12-13 04:42:28 +00:00
{
return [
'name' => 'required',
'songs' => 'array',
];
}
}