1 | <?php |
||
8 | class PasswordResetToken |
||
9 | { |
||
10 | /** |
||
11 | * @param UserInterface $user |
||
12 | * @param $token |
||
13 | * |
||
14 | * @return bool |
||
15 | * |
||
16 | * @throws InvalidPasswordResetTokenException |
||
17 | */ |
||
18 | public static function validateToken(UserInterface $user, $token) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public static function generate() |
||
34 | } |
||
35 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.