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

21 lines
382 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App\Http\Requests\API;
2024-01-10 20:04:37 +00:00
use App\Models\Song;
use Illuminate\Validation\Rule;
/**
2020-12-22 20:11:22 +00:00
* @property array<string> $songs
*/
2024-01-10 21:37:24 +00:00
class InteractWithMultipleSongsRequest extends Request
2015-12-13 04:42:28 +00:00
{
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 [
2024-01-10 20:04:37 +00:00
'songs' => ['required', 'array', Rule::exists(Song::class, 'id')],
2015-12-13 04:42:28 +00:00
];
}
}