From 79c92da8c14de61dccc015f04c3900aac4bd4179 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 24 Apr 2019 11:01:37 +0200 Subject: Formatting ```bash php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/] ``` --- tests/Unit/Http/SessionServiceProviderTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/Unit/Http/SessionServiceProviderTest.php') diff --git a/tests/Unit/Http/SessionServiceProviderTest.php b/tests/Unit/Http/SessionServiceProviderTest.php index 204cfe1e..08f1945a 100644 --- a/tests/Unit/Http/SessionServiceProviderTest.php +++ b/tests/Unit/Http/SessionServiceProviderTest.php @@ -17,8 +17,8 @@ use Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface as class SessionServiceProviderTest extends ServiceProviderTest { /** - * @covers \Engelsystem\Http\SessionServiceProvider::register() * @covers \Engelsystem\Http\SessionServiceProvider::getSessionStorage() + * @covers \Engelsystem\Http\SessionServiceProvider::register() */ public function testRegister() { @@ -53,13 +53,13 @@ class SessionServiceProviderTest extends ServiceProviderTest [Session::class], [ NativeSessionStorage::class, - ['options' => ['cookie_httponly' => true, 'name' => 'session'], 'handler' => null] + ['options' => ['cookie_httponly' => true, 'name' => 'session'], 'handler' => null], ], [Session::class], [DatabaseHandler::class], [ NativeSessionStorage::class, - ['options' => ['cookie_httponly' => true, 'name' => 'foobar'], 'handler' => $databaseHandler] + ['options' => ['cookie_httponly' => true, 'name' => 'foobar'], 'handler' => $databaseHandler], ], [Session::class] ) -- cgit v1.2.3-54-g00ecf