koel/app/Http/Requests/API/BatchInteractionRequest.php
2016-01-26 14:32:29 +08:00

28 lines
477 B
PHP

<?php
namespace App\Http\Requests\API;
class BatchInteractionRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'songs' => 'required|array',
];
}
}