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