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, ], ],