@@ -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'; |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * @param int $max_lifetime the number of seconds after which data will be seen as 'garbage' and cleaned up. |
| 65 | 65 | * @return bool whether session is GCed successfully |
| 66 | 66 | */ |
| 67 | - public function gc(int $max_lifetime): int|false { |
|
| 67 | + public function gc(int $max_lifetime): int | false { |
|
| 68 | 68 | return $this->_session->_gc($max_lifetime); |
| 69 | 69 | } |
| 70 | 70 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param string $id session ID |
| 84 | 84 | * @return string|false the session data |
| 85 | 85 | */ |
| 86 | - public function read(string $id): string|false { |
|
| 86 | + public function read(string $id): string | false { |
|
| 87 | 87 | return $this->_session->_read($id); |
| 88 | 88 | } |
| 89 | 89 | |