diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-08 12:16:48 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-08 12:16:48 +0200 |
commit | 942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce (patch) | |
tree | bab79bc2acbab03cb841cb881b56ca669073dd19 /Http/Session | |
parent | 0d1a53126976c957800e4aa1778d902bda4fe1ca (diff) | |
download | symfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.zip symfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.tar.gz symfony-security-942afaa9c1dfb7011f9c136cb477d6d26a0dd6ce.tar.bz2 |
fixed CS
Diffstat (limited to 'Http/Session')
-rw-r--r-- | Http/Session/SessionAuthenticationStrategy.php | 2 | ||||
-rw-r--r-- | Http/Session/SessionAuthenticationStrategyInterface.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Http/Session/SessionAuthenticationStrategy.php b/Http/Session/SessionAuthenticationStrategy.php index 6b5aaa5..7e0c20a 100644 --- a/Http/Session/SessionAuthenticationStrategy.php +++ b/Http/Session/SessionAuthenticationStrategy.php @@ -60,4 +60,4 @@ class SessionAuthenticationStrategy implements SessionAuthenticationStrategyInte throw new \RuntimeException(sprintf('Invalid session authentication strategy "%s"', $this->strategy)); } } -}
\ No newline at end of file +} diff --git a/Http/Session/SessionAuthenticationStrategyInterface.php b/Http/Session/SessionAuthenticationStrategyInterface.php index d0b8246..54924ac 100644 --- a/Http/Session/SessionAuthenticationStrategyInterface.php +++ b/Http/Session/SessionAuthenticationStrategyInterface.php @@ -36,4 +36,4 @@ interface SessionAuthenticationStrategyInterface * @return void */ function onAuthentication(Request $request, TokenInterface $token); -}
\ No newline at end of file +} |