2016-12-11 13:08:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
/**
|
2017-12-09 18:34:27 +00:00
|
|
|
* @property float time
|
2016-12-11 13:08:30 +00:00
|
|
|
*/
|
2017-12-09 18:34:27 +00:00
|
|
|
class SongPlayRequest extends FormRequest
|
2016-12-11 13:08:30 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
2017-12-10 21:21:54 +00:00
|
|
|
return [
|
|
|
|
];
|
2016-12-11 13:08:30 +00:00
|
|
|
}
|
|
|
|
}
|