Skip to content

Commit a3658c0

Browse files
authored
Apply fixes from StyleCI (#242)
Co-authored-by: Tobias Nyholm <[email protected]>
1 parent b3ca538 commit a3658c0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Psr16SessionHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public function __construct(CacheInterface $cache, array $options = [])
4848

4949
if ($diff = array_diff(array_keys($options), ['prefix', 'ttl'])) {
5050
throw new \InvalidArgumentException(sprintf(
51-
'The following options are not supported "%s"', implode(', ', $diff)
51+
'The following options are not supported "%s"',
52+
implode(', ', $diff)
5253
));
5354
}
5455

Psr6SessionHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ public function __construct(CacheItemPoolInterface $cache, array $options = [])
4949

5050
if ($diff = array_diff(array_keys($options), ['prefix', 'ttl'])) {
5151
throw new \InvalidArgumentException(sprintf(
52-
'The following options are not supported "%s"', implode(', ', $diff)
52+
'The following options are not supported "%s"',
53+
implode(', ', $diff)
5354
));
5455
}
5556

0 commit comments

Comments
 (0)