mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API\Download;
|
|
|
|
/**
|
|
* @property array $songs
|
|
*/
|
|
class SongRequest extends Request
|
|
{
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'songs' => 'required|array',
|
|
];
|
|
}
|
|
}
|