koel/app/Http/Requests/API/ViewSongRequest.php
2016-12-11 21:08:30 +08:00

33 lines
538 B
PHP

<?php
namespace App\Http\Requests\API;
use Illuminate\Foundation\Http\FormRequest;
/**
* @property string q
*/
class ViewSongRequest extends FormRequest
{
/**
* 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 [
'q' => 'required',
];
}
}