| 1 | <?php |
||
| 8 | class NullUserProvider implements UserProvider |
||
| 9 | { |
||
| 10 | public function __construct() |
||
| 13 | |||
| 14 | public function retrieveById($identifier) |
||
| 18 | |||
| 19 | public function retrieveByToken($identifier, $token) |
||
| 22 | |||
| 23 | public function updateRememberToken(Authenticatable $user, $token) |
||
| 26 | |||
| 27 | public function retrieveByCredentials(array $credentials) |
||
| 30 | |||
| 31 | public function validateCredentials(Authenticatable $user, array $credentials) |
||
| 35 | } |
||
| 36 |