mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
17 lines
266 B
PHP
17 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Download;
|
|
|
|
/**
|
|
* @property array $songs
|
|
*/
|
|
class SongRequest extends Request
|
|
{
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'songs' => 'required|array',
|
|
];
|
|
}
|
|
}
|