diff options
author | Disquedur <contact@disquedur.tk> | 2014-10-22 20:27:13 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-10-26 08:30:58 +0100 |
commit | 2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b (patch) | |
tree | 6db7bb361d84015917efef4948aea85500d7b902 /Http/Authentication | |
parent | cd022841a94f02dd95541fee4cc4a09c4b053d01 (diff) | |
download | symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.zip symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.gz symfony-security-2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b.tar.bz2 |
Remove aligned '=>' and '='
Diffstat (limited to 'Http/Authentication')
-rw-r--r-- | Http/Authentication/DefaultAuthenticationFailureHandler.php | 10 | ||||
-rw-r--r-- | Http/Authentication/DefaultAuthenticationSuccessHandler.php | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php index db96e67..b3c5c4d 100644 --- a/Http/Authentication/DefaultAuthenticationFailureHandler.php +++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php @@ -46,13 +46,13 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options, LoggerInterface $logger = null) { $this->httpKernel = $httpKernel; - $this->httpUtils = $httpUtils; - $this->logger = $logger; + $this->httpUtils = $httpUtils; + $this->logger = $logger; $this->options = array_merge(array( - 'failure_path' => null, - 'failure_forward' => false, - 'login_path' => '/login', + 'failure_path' => null, + 'failure_forward' => false, + 'login_path' => '/login', 'failure_path_parameter' => '_failure_path', ), $options); } diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php index 54d6fc1..591a28d 100644 --- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php +++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php @@ -36,14 +36,14 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle */ public function __construct(HttpUtils $httpUtils, array $options) { - $this->httpUtils = $httpUtils; + $this->httpUtils = $httpUtils; $this->options = array_merge(array( 'always_use_default_target_path' => false, - 'default_target_path' => '/', - 'login_path' => '/login', - 'target_path_parameter' => '_target_path', - 'use_referer' => false, + 'default_target_path' => '/', + 'login_path' => '/login', + 'target_path_parameter' => '_target_path', + 'use_referer' => false, ), $options); } |