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