koel/app/Http/Requests/API/BatchInteractionRequest.php

29 lines
477 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?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 [
2016-01-26 06:32:29 +00:00
'songs' => 'required|array',
2015-12-13 04:42:28 +00:00
];
}
}