| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | class AuthenticationEntryPoint implements AuthenticationEntryPointInterface |
||
| 15 | { |
||
| 16 | private $urlGenerator; |
||
| 17 | private $session; |
||
| 18 | |||
| 19 | public function __construct(UrlGeneratorInterface $urlGenerator, SessionInterface $session) |
||
| 20 | { |
||
| 21 | $this->urlGenerator = $urlGenerator; |
||
| 22 | $this->session = $session; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function start(Request $request, AuthenticationException $authException = null): RedirectResponse |
||
| 30 | } |
||
| 31 | } |
||
| 32 |
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.