diff options
Diffstat (limited to 'Core/Authentication')
6 files changed, 6 insertions, 6 deletions
diff --git a/Core/Authentication/Provider/RememberMeAuthenticationProvider.php b/Core/Authentication/Provider/RememberMeAuthenticationProvider.php index 67d7767..fb687b2 100644 --- a/Core/Authentication/Provider/RememberMeAuthenticationProvider.php +++ b/Core/Authentication/Provider/RememberMeAuthenticationProvider.php @@ -53,4 +53,4 @@ class RememberMeAuthenticationProvider implements AuthenticationProviderInterfac { return $token instanceof RememberMeToken && $token->getProviderKey() === $this->providerKey; } -}
\ No newline at end of file +} diff --git a/Core/Authentication/RememberMe/InMemoryTokenProvider.php b/Core/Authentication/RememberMe/InMemoryTokenProvider.php index 7dd06a1..4653900 100644 --- a/Core/Authentication/RememberMe/InMemoryTokenProvider.php +++ b/Core/Authentication/RememberMe/InMemoryTokenProvider.php @@ -56,4 +56,4 @@ class InMemoryTokenProvider implements TokenProviderInterface { $this->tokens[$token->getSeries()] = $token; } -}
\ No newline at end of file +} diff --git a/Core/Authentication/RememberMe/PersistentToken.php b/Core/Authentication/RememberMe/PersistentToken.php index 55e6b89..d9029f5 100644 --- a/Core/Authentication/RememberMe/PersistentToken.php +++ b/Core/Authentication/RememberMe/PersistentToken.php @@ -104,4 +104,4 @@ final class PersistentToken implements PersistentTokenInterface { return $this->lastUsed; } -}
\ No newline at end of file +} diff --git a/Core/Authentication/RememberMe/PersistentTokenInterface.php b/Core/Authentication/RememberMe/PersistentTokenInterface.php index 7d76a1d..004a9b7 100644 --- a/Core/Authentication/RememberMe/PersistentTokenInterface.php +++ b/Core/Authentication/RememberMe/PersistentTokenInterface.php @@ -48,4 +48,4 @@ interface PersistentTokenInterface * @return \DateTime */ function getLastUsed(); -}
\ No newline at end of file +} diff --git a/Core/Authentication/RememberMe/TokenProviderInterface.php b/Core/Authentication/RememberMe/TokenProviderInterface.php index 1ec9c80..b48bd4d 100644 --- a/Core/Authentication/RememberMe/TokenProviderInterface.php +++ b/Core/Authentication/RememberMe/TokenProviderInterface.php @@ -48,4 +48,4 @@ interface TokenProviderInterface * @param PersistentTokenInterface $token */ function createNewToken(PersistentTokenInterface $token); -}
\ No newline at end of file +} diff --git a/Core/Authentication/Token/RememberMeToken.php b/Core/Authentication/Token/RememberMeToken.php index 6abb1e5..81ab1c2 100644 --- a/Core/Authentication/Token/RememberMeToken.php +++ b/Core/Authentication/Token/RememberMeToken.php @@ -92,4 +92,4 @@ class RememberMeToken extends AbstractToken list($this->key, $this->providerKey, $parentStr) = unserialize($serialized); parent::unserialize($parentStr); } -}
\ No newline at end of file +} |