@@ -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 | |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | return ''; |
319 | 319 | } |
320 | 320 | |
321 | - if (! isset($list[$select])) { |
|
321 | + if (!isset($list[$select])) { |
|
322 | 322 | return $list[0]; |
323 | 323 | } |
324 | 324 |