name = $identifier['user']; $user->email = Arr::has($identifier, 'email') ? : 'user@auth.proxy'; return $user; } /** * @inheritDoc * * @codeCoverageIgnore */ public function retrieveByToken($identifier, $token) { throw new Exception(sprintf('No implementation for %s', __METHOD__)); } /** * @inheritDoc * * @codeCoverageIgnore */ public function updateRememberToken(Authenticatable $user, $token) { throw new Exception(sprintf('No implementation for %s', __METHOD__)); } /** * @inheritDoc * * @codeCoverageIgnore */ public function retrieveByCredentials(array $credentials) { throw new Exception(sprintf('No implementation for %s', __METHOD__)); } /** * @inheritDoc * * @codeCoverageIgnore */ public function validateCredentials(Authenticatable $user, array $credentials) { throw new Exception(sprintf('No implementation for %s', __METHOD__)); } }