@@ -43,7 +43,7 @@ |
||
43 | 43 | E_USER_WARNING => "User Warning", |
44 | 44 | E_USER_NOTICE => "User Notice", |
45 | 45 | ]; |
46 | - if(PHP_VERSION_ID < 80400) { |
|
46 | + if (PHP_VERSION_ID < 80400) { |
|
47 | 47 | $errorTypes[E_STRICT] = "Runtime Notice"; |
48 | 48 | } |
49 | 49 | $errorType = $errorTypes[$errno] ?? 'Unknown Error'; |
@@ -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 bool 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 | } |