mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
15 lines
293 B
PHP
15 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
/** @property-read array<string> $songs */
|
|
class DeleteSongsRequest extends Request
|
|
{
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'songs' => 'required|array|exists:songs,id',
|
|
];
|
|
}
|
|
}
|