@@ -197,6 +197,9 @@ |
||
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | |
| 200 | + /** |
|
| 201 | + * @param string $message |
|
| 202 | + */ |
|
| 200 | 203 | private function logCookieError(Entity\CookieIdentity $identity, $message) |
| 201 | 204 | { |
| 202 | 205 | $this->logger->error($message, [ |
@@ -6,16 +6,12 @@ |
||
| 6 | 6 | * Retrieval and handling of identities for registered users |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -use RuntimeException; |
|
| 10 | - |
|
| 11 | 9 | use Palladium\Mapper as Mapper; |
| 12 | 10 | use Palladium\Entity as Entity; |
| 13 | - |
|
| 14 | 11 | use Palladium\Exception\PasswordNotMatch; |
| 15 | 12 | use Palladium\Exception\CompromisedCookie; |
| 16 | 13 | use Palladium\Exception\DenialOfServiceAttempt; |
| 17 | 14 | use Palladium\Exception\IdentityExpired; |
| 18 | - |
|
| 19 | 15 | use Palladium\Contract\CanCreateMapper; |
| 20 | 16 | use Psr\Log\LoggerInterface; |
| 21 | 17 | |