| 1 | <?php |
||
| 15 | class UserProvider implements UserProviderInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var UserRepository |
||
| 19 | */ |
||
| 20 | private $userRepository; |
||
| 21 | |||
| 22 | public function __construct(UserRepository $userRepository) |
||
| 26 | |||
| 27 | public function loadUserByUsername($username): UserInterface |
||
| 35 | |||
| 36 | public function refreshUser(UserInterface $user): UserInterface |
||
| 44 | |||
| 45 | public function supportsClass($class): bool |
||
| 49 | } |
||
| 50 |
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.