koel/app/Http/Requests/API/Interaction/StorePlayCountRequest.php

34 lines
562 B
PHP
Raw Normal View History

2016-12-11 13:08:30 +00:00
<?php
namespace App\Http\Requests\API\Interaction;
2016-12-11 13:08:30 +00:00
use Illuminate\Foundation\Http\FormRequest;
/**
* @property string song
2016-12-11 13:08:30 +00:00
*/
class StorePlayCountRequest 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()
{
return [
'song' => 'required',
2016-12-11 13:08:30 +00:00
];
}
}