mirror of
https://github.com/koel/koel
synced 2024-12-14 06:32:28 +00:00
21 lines
378 B
PHP
21 lines
378 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\V6\Requests;
|
||
|
|
||
|
use App\Http\Requests\API\Request;
|
||
|
|
||
|
/**
|
||
|
* @property-read array<string> songs
|
||
|
*/
|
||
|
class AddSongsToPlaylistRequest extends Request
|
||
|
{
|
||
|
/** @return array<mixed> */
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [
|
||
|
'songs' => 'required|array',
|
||
|
'songs.*' => 'exists:songs,id',
|
||
|
];
|
||
|
}
|
||
|
}
|