summaryrefslogtreecommitdiffstats
path: root/Http/Authentication
diff options
context:
space:
mode:
authorDisquedur <contact@disquedur.tk>2014-11-04 15:29:39 +0100
committerDisquedur <contact@disquedur.tk>2014-11-04 15:29:39 +0100
commit523afec3bf83cfaf067d3c5b92b02eaa18d730cd (patch)
tree41377b089ae4ae19758b9c92ec60adcfb5b187b1 /Http/Authentication
parentcbc1e7b11e40e800390fc55fff8614d4d2fb8e0a (diff)
downloadsymfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.zip
symfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.tar.gz
symfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.tar.bz2
Remove aligned '=>' and '='
Diffstat (limited to 'Http/Authentication')
-rw-r--r--Http/Authentication/DefaultAuthenticationFailureHandler.php6
-rw-r--r--Http/Authentication/DefaultAuthenticationSuccessHandler.php8
2 files changed, 7 insertions, 7 deletions
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php
index 93150c8..8864dae 100644
--- a/Http/Authentication/DefaultAuthenticationFailureHandler.php
+++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php
@@ -35,9 +35,9 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
protected $logger;
protected $options;
protected $defaultOptions = array(
- 'failure_path' => null,
- 'failure_forward' => false,
- 'login_path' => '/login',
+ 'failure_path' => null,
+ 'failure_forward' => false,
+ 'login_path' => '/login',
'failure_path_parameter' => '_failure_path',
);
diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
index 0ee11b4..5fa7071 100644
--- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php
+++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
@@ -29,10 +29,10 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
protected $providerKey;
protected $defaultOptions = 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,
);
/**