phpvms/app/Interfaces/FormRequest.php
2018-08-26 16:40:04 +00:00

28 lines
358 B
PHP

<?php
namespace App\Interfaces;
/**
* Class FormRequest
*/
class FormRequest extends \Illuminate\Foundation\Http\FormRequest
{
protected $sanitizer;
/**
* @return bool
*/
public function authorize()
{
return true;
}
/**
* @return array
*/
public function rules()
{
return [];
}
}