Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class AuthenticatedSessionController extends Controller |
||
15 | { |
||
16 | /** |
||
17 | * Display the login view. |
||
18 | */ |
||
19 | public function create(): Response |
||
24 | ]); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Handle an incoming authentication request. |
||
29 | */ |
||
30 | public function store(LoginRequest $request): RedirectResponse |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Destroy an authenticated session. |
||
41 | */ |
||
42 | public function destroy(Request $request): RedirectResponse |
||
53 |
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.