@@ -233,8 +233,8 @@ |
||
233 | 233 | session_name($sessionName); |
234 | 234 | } |
235 | 235 | |
236 | - $ttl = (int)$this->config->get('ttl'); |
|
237 | - $lifetime = (int)$this->config->get('cookie.lifetime'); |
|
236 | + $ttl = (int) $this->config->get('ttl'); |
|
237 | + $lifetime = (int) $this->config->get('cookie.lifetime'); |
|
238 | 238 | $path = $this->config->get('cookie.path'); |
239 | 239 | $domain = $this->config->get('cookie.domain'); |
240 | 240 | $secure = $this->config->get('cookie.secure'); |
@@ -103,7 +103,7 @@ |
||
103 | 103 | * {@inheritdoc} |
104 | 104 | * @see SessionHandlerInterface |
105 | 105 | */ |
106 | - public function read(string $sid): string|false |
|
106 | + public function read(string $sid): string | false |
|
107 | 107 | { |
108 | 108 | $file = $this->getSessionFile($sid); |
109 | 109 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | * {@inheritdoc} |
58 | 58 | * @see SessionHandlerInterface |
59 | 59 | */ |
60 | - public function read(string $sid): string|false |
|
60 | + public function read(string $sid): string | false |
|
61 | 61 | { |
62 | 62 | return ''; |
63 | 63 | } |
@@ -76,7 +76,7 @@ |
||
76 | 76 | * {@inheritdoc} |
77 | 77 | * @see SessionHandlerInterface |
78 | 78 | */ |
79 | - public function read(string $sid): string|false |
|
79 | + public function read(string $sid): string | false |
|
80 | 80 | { |
81 | 81 | $success = false; |
82 | 82 | /** @var mixed */ |