koel/app/Http/Requests/API/SongPlayRequest.php
2017-12-10 22:21:54 +01:00

32 lines
503 B
PHP

<?php
namespace App\Http\Requests\API;
use Illuminate\Foundation\Http\FormRequest;
/**
* @property float time
*/
class SongPlayRequest 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 [
];
}
}