koel/app/Http/Requests/API/Download/SongRequest.php
2016-08-03 18:42:11 +08:00

21 lines
333 B
PHP

<?php
namespace App\Http\Requests\API\Download;
/**
* @property array songs
*/
class SongRequest extends Request
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'songs' => 'required|array',
];
}
}