phpvms/app/Interfaces/FormRequest.php

29 lines
385 B
PHP

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