1 | <?php |
||
8 | class Reauthenticate |
||
9 | { |
||
10 | /** |
||
11 | * Handle an incoming request. |
||
12 | * |
||
13 | * @param \Illuminate\Http\Request $request |
||
14 | * @param \Closure $next |
||
15 | * |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function handle($request, Closure $next) |
||
30 | |||
31 | /** |
||
32 | * Handle invalidated auth. |
||
33 | * |
||
34 | * @param \Illuminate\Http\Request |
||
35 | * |
||
36 | * @return \Illuminate\Http\RedirectResponse |
||
37 | */ |
||
38 | protected function invalidated($request) |
||
44 | } |
||
45 |
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.