mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
18 lines
322 B
PHP
18 lines
322 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
/**
|
|
* @property-read array<string> $songs
|
|
*/
|
|
class UpdateQueueStateRequest extends Request
|
|
{
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
// @todo validate song/episode ids
|
|
return [
|
|
'songs' => ['array'],
|
|
];
|
|
}
|
|
}
|