| 1 | <?php |
||
| 11 | class FormRequest extends LaravelFormRequest |
||
| 12 | {
|
||
| 13 | /** |
||
| 14 | * Sanitize input before validating. |
||
| 15 | */ |
||
| 16 | public function validate() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Sanitize this request's input |
||
| 24 | */ |
||
| 25 | public function sanitize() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Filters to be applied to the input. |
||
| 33 | * |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | public function filters() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Validation rules to be applied to the input. |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | public function rules() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Determine if the user is authorized to make this request. |
||
| 53 | * |
||
| 54 | * @return bool |
||
| 55 | */ |
||
| 56 | public function authorize() |
||
| 60 | } |
||
| 61 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.