1 | <?php |
||
12 | class FormRequest extends LaravelFormRequest |
||
13 | { |
||
14 | /** |
||
15 | * Sanitize input before validating. |
||
16 | */ |
||
17 | public function validate() |
||
22 | |||
23 | /** |
||
24 | * Sanitize this request's input. |
||
25 | */ |
||
26 | public function sanitize() |
||
31 | |||
32 | /** |
||
33 | * Filters to be applied to the input. |
||
34 | * |
||
35 | * @return array |
||
36 | */ |
||
37 | public function filters() |
||
41 | |||
42 | /** |
||
43 | * Validation rules to be applied to the input. |
||
44 | * |
||
45 | * @return array |
||
46 | */ |
||
47 | public function rules() |
||
51 | |||
52 | /** |
||
53 | * Determine if the user is authorized to make this request. |
||
54 | * |
||
55 | * @return bool |
||
56 | */ |
||
57 | public function authorize() |
||
61 | } |
||
62 |
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.