Fix code style
This commit is contained in:
parent
0a3a3c3b56
commit
85bc95fea9
|
@ -59,7 +59,12 @@ class SessionServiceProviderTest extends ServiceProviderTest
|
||||||
NativeSessionStorage::class,
|
NativeSessionStorage::class,
|
||||||
[
|
[
|
||||||
// 2 days
|
// 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,
|
'handler' => null,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
@ -69,7 +74,12 @@ class SessionServiceProviderTest extends ServiceProviderTest
|
||||||
NativeSessionStorage::class,
|
NativeSessionStorage::class,
|
||||||
[
|
[
|
||||||
// 5 days
|
// 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,
|
'handler' => $databaseHandler,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue