@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | return; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - if (! is_readable($this->filename)) { |
|
| 64 | + if (!is_readable($this->filename)) { |
|
| 65 | 65 | $this->error = self::ERROR_DOES_NOT_EXIST; |
| 66 | 66 | |
| 67 | 67 | return; |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | $translations = $stream->readint($unpack, 16); |
| 88 | 88 | |
| 89 | 89 | /* get original and translations tables */ |
| 90 | - $totalTimesTwo = (int) ($total * 2);// Fix for issue #36 on ARM |
|
| 90 | + $totalTimesTwo = (int) ($total * 2); // Fix for issue #36 on ARM |
|
| 91 | 91 | $tableOriginals = $stream->readintarray($unpack, $originals, $totalTimesTwo); |
| 92 | 92 | $tableTranslations = $stream->readintarray($unpack, $translations, $totalTimesTwo); |
| 93 | 93 | |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | { |
| 275 | 275 | // this should contains all strings separated by NULLs |
| 276 | 276 | $key = implode(chr(0), [$msgid, $msgidPlural]); |
| 277 | - if (! $this->cache->has($key)) { |
|
| 277 | + if (!$this->cache->has($key)) { |
|
| 278 | 278 | return $number !== 1 ? $msgidPlural : $msgid; |
| 279 | 279 | } |
| 280 | 280 | |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | |
| 294 | 294 | // @codeCoverageIgnoreEnd |
| 295 | 295 | |
| 296 | - if (! isset($list[$select])) { |
|
| 296 | + if (!isset($list[$select])) { |
|
| 297 | 297 | return $list[0]; |
| 298 | 298 | } |
| 299 | 299 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | bool $reloadOnMiss = true, |
| 46 | 46 | string $prefix = 'mo_' |
| 47 | 47 | ) { |
| 48 | - if (! (function_exists('apcu_enabled') && apcu_enabled())) { |
|
| 48 | + if (!(function_exists('apcu_enabled') && apcu_enabled())) { |
|
| 49 | 49 | throw new CacheException('ACPu extension must be installed and enabled'); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | return $msgstr; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if (! $this->reloadOnMiss) { |
|
| 69 | + if (!$this->reloadOnMiss) { |
|
| 70 | 70 | return $msgid; |
| 71 | 71 | } |
| 72 | 72 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | public function setAll(array $translations): void |
| 94 | 94 | { |
| 95 | - $keys = array_map(function (string $msgid): string { |
|
| 95 | + $keys = array_map(function(string $msgid): string { |
|
| 96 | 96 | return $this->getKey($msgid); |
| 97 | 97 | }, array_keys($translations)); |
| 98 | 98 | $translations = array_combine($keys, $translations); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | // Try to prevent cache slam if multiple processes are trying to load translations. There is still a race |
| 112 | 112 | // between the exists check and creating the entry, but at least it's small |
| 113 | 113 | $key = $this->getKey(self::LOADED_KEY); |
| 114 | - $loaded = apcu_exists($key) || apcu_entry($key, static function (): int { |
|
| 114 | + $loaded = apcu_exists($key) || apcu_entry($key, static function(): int { |
|
| 115 | 115 | return 0; |
| 116 | 116 | }); |
| 117 | 117 | if ($loaded) { |