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