koel/app/Http/Requests/API/BatchInteractionRequest.php
2015-12-13 12:42:28 +08:00

28 lines
475 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 [
'ids' => 'required|array',
];
}
}