@@ -57,7 +57,7 @@ discard block |
||
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 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * {@inheritdoc} |
94 | 94 | * @see SessionHandlerInterface |
95 | 95 | */ |
96 | - public function gc(int $maxLifetime): int|false |
|
96 | + public function gc(int $maxLifetime): int | false |
|
97 | 97 | { |
98 | 98 | return 0; |
99 | 99 | } |
@@ -103,7 +103,7 @@ discard block |
||
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 | |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | * {@inheritdoc} |
160 | 160 | * @see SessionHandlerInterface |
161 | 161 | */ |
162 | - public function gc(int $maxLifetime): int|false |
|
162 | + public function gc(int $maxLifetime): int | false |
|
163 | 163 | { |
164 | 164 | $count = 0; |
165 | 165 | $files = $this->directory->read(DirectoryInterface::FILE); |
@@ -76,7 +76,7 @@ discard block |
||
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 */ |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * {@inheritdoc} |
118 | 118 | * @see SessionHandlerInterface |
119 | 119 | */ |
120 | - public function gc(int $maxLifetime): int|false |
|
120 | + public function gc(int $maxLifetime): int | false |
|
121 | 121 | { |
122 | 122 | //APCU will do automatically |
123 | 123 |