mirror of
https://github.com/koel/koel
synced 2024-12-13 14:12:27 +00:00
20 lines
379 B
PHP
20 lines
379 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',
|
|
];
|
|
}
|
|
}
|