diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-09-21 20:53:12 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-09-22 10:32:35 +0200 |
commit | 2d2a3fa99c5d006c67dcaed702ac9a306ebe9c41 (patch) | |
tree | 302513f87846d4bc57246b93ba90977ad8b8540b /Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php | |
parent | 4368c75cbeb587fede098da5a6c5c705fe19f238 (diff) | |
download | symfony-security-2d2a3fa99c5d006c67dcaed702ac9a306ebe9c41.zip symfony-security-2d2a3fa99c5d006c67dcaed702ac9a306ebe9c41.tar.gz symfony-security-2d2a3fa99c5d006c67dcaed702ac9a306ebe9c41.tar.bz2 |
fixed CS
Diffstat (limited to 'Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php')
-rw-r--r-- | Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php b/Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php index 91de1ca..95c73d2 100644 --- a/Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php +++ b/Tests/Http/EntryPoint/RetryAuthenticationEntryPointTest.php @@ -46,26 +46,26 @@ class RetryAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase 80, 443, Request::create('http://localhost/foo/bar?baz=bat'), - 'https://localhost/foo/bar?baz=bat' + 'https://localhost/foo/bar?baz=bat', ), array( 80, 443, Request::create('https://localhost/foo/bar?baz=bat'), - 'http://localhost/foo/bar?baz=bat' + 'http://localhost/foo/bar?baz=bat', ), array( 80, 123, Request::create('http://localhost/foo/bar?baz=bat'), - 'https://localhost:123/foo/bar?baz=bat' + 'https://localhost:123/foo/bar?baz=bat', ), array( 8080, 443, Request::create('https://localhost/foo/bar?baz=bat'), - 'http://localhost:8080/foo/bar?baz=bat' - ) + 'http://localhost:8080/foo/bar?baz=bat', + ), ); } } |