@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function __construct(string $filename) |
98 | 98 | { |
99 | - if (! is_readable($filename)) { |
|
99 | + if (!is_readable($filename)) { |
|
100 | 100 | $this->error = self::ERROR_DOES_NOT_EXIST; |
101 | 101 | |
102 | 102 | return; |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | { |
306 | 306 | // this should contains all strings separated by NULLs |
307 | 307 | $key = implode(chr(0), [$msgid, $msgidPlural]); |
308 | - if (! array_key_exists($key, $this->cache_translations)) { |
|
308 | + if (!array_key_exists($key, $this->cache_translations)) { |
|
309 | 309 | return ($number != 1) ? $msgidPlural : $msgid; |
310 | 310 | } |
311 | 311 | |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | $result = $this->cache_translations[$key]; |
316 | 316 | $list = explode(chr(0), $result); |
317 | 317 | |
318 | - if (! isset($list[$select])) { |
|
318 | + if (!isset($list[$select])) { |
|
319 | 319 | return $list[0]; |
320 | 320 | } |
321 | 321 |