1 | <?php |
||
12 | class ProfileController extends Controller |
||
13 | { |
||
14 | /** |
||
15 | * ProfileController constructor. |
||
16 | */ |
||
17 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * Update the profile information. |
||
25 | * |
||
26 | * @param Requests\ProfileValidator $input |
||
27 | * @return \Illuminate\Http\RedirectResponse |
||
28 | */ |
||
29 | public function updateProfile(Requests\ProfileValidator $input) |
||
50 | |||
51 | /** |
||
52 | * Update your password. |
||
53 | * |
||
54 | * @param Requests\PasswordValidation $input |
||
55 | * @return \Illuminate\Http\RedirectResponse |
||
56 | */ |
||
57 | public function updateSecurity(Requests\PasswordValidation $input) |
||
66 | } |
||
67 |
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.