From 85bc95fea9d2a219806da960f8c73d7d732267ae Mon Sep 17 00:00:00 2001 From: Michael Weimann Date: Mon, 14 Aug 2023 16:38:44 +0200 Subject: [PATCH] Fix code style --- tests/Unit/Http/SessionServiceProviderTest.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Http/SessionServiceProviderTest.php b/tests/Unit/Http/SessionServiceProviderTest.php index 6734ea12..b7a89fe5 100644 --- a/tests/Unit/Http/SessionServiceProviderTest.php +++ b/tests/Unit/Http/SessionServiceProviderTest.php @@ -59,7 +59,12 @@ class SessionServiceProviderTest extends ServiceProviderTest NativeSessionStorage::class, [ // 2 days - 'options' => ['cookie_secure' => true, 'cookie_httponly' => true, 'name' => 'session', 'cookie_lifetime' => 172800], + 'options' => [ + 'cookie_secure' => true, + 'cookie_httponly' => true, + 'name' => 'session', + 'cookie_lifetime' => 172800, + ], 'handler' => null, ], ], @@ -69,7 +74,12 @@ class SessionServiceProviderTest extends ServiceProviderTest NativeSessionStorage::class, [ // 5 days - 'options' => ['cookie_secure' => true, 'cookie_httponly' => true, 'name' => 'foobar', 'cookie_lifetime' => 432000], + 'options' => [ + 'cookie_secure' => true, + 'cookie_httponly' => true, + 'name' => 'foobar', + 'cookie_lifetime' => 432000, + ], 'handler' => $databaseHandler, ], ],