koel/app/Http/Requests/API/BatchInteractionRequest.php
2017-12-09 19:34:27 +01:00

31 lines
510 B
PHP

<?php
namespace App\Http\Requests\API;
/**
* @property array songs
*/
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',
];
}
}