@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * @param int $max_lifetime the number of seconds after which data will be seen as 'garbage' and cleaned up. |
67 | 67 | * @return false|int whether session is GCed successfully |
68 | 68 | */ |
69 | - public function gc(int $max_lifetime): int|false |
|
69 | + public function gc(int $max_lifetime): int | false |
|
70 | 70 | { |
71 | 71 | return $this->_session->_gc($max_lifetime); |
72 | 72 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param string $id session ID |
88 | 88 | * @return false|string the session data |
89 | 89 | */ |
90 | - public function read(string $id): string|false |
|
90 | + public function read(string $id): string | false |
|
91 | 91 | { |
92 | 92 | return $this->_session->_read($id); |
93 | 93 | } |