1 | <?php |
||
13 | class UpdateUser extends FormRequest |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * Determine if the user is authorized to make this request. |
||
18 | * |
||
19 | * @return bool |
||
20 | */ |
||
21 | public function authorize() |
||
25 | |||
26 | /** |
||
27 | * Get the validation rules that apply to the request. |
||
28 | * |
||
29 | * @return array |
||
30 | */ |
||
31 | public function rules() |
||
37 | } |
||
38 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.