Passed
Push — master ( fd8a3e...eec177 )
by Maurício
18:11 queued 08:08
created
tests/TranslatorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         $translator->getTranslations();
92 92
     }
93 93
 
94
-    private function getTranslator(string|null $filename): Translator
94
+    private function getTranslator(string | null $filename): Translator
95 95
     {
96 96
         return new Translator(new InMemoryCache(new MoParser($filename)));
97 97
     }
Please login to merge, or discard this patch.
src/MoParser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /** @var string|null */
52 52
     private $filename;
53 53
 
54
-    public function __construct(string|null $filename)
54
+    public function __construct(string | null $filename)
55 55
     {
56 56
         $this->filename = $filename;
57 57
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             return;
66 66
         }
67 67
 
68
-        if (! is_readable($this->filename)) {
68
+        if (!is_readable($this->filename)) {
69 69
             $this->error = self::ERROR_DOES_NOT_EXIST;
70 70
 
71 71
             return;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             $translations = $stream->readint($unpack, 16);
92 92
 
93 93
             /* get original and translations tables */
94
-            $totalTimesTwo = (int) ($total * 2);// Fix for issue #36 on ARM
94
+            $totalTimesTwo = (int) ($total * 2); // Fix for issue #36 on ARM
95 95
             $tableOriginals = $stream->readintarray($unpack, $originals, $totalTimesTwo);
96 96
             $tableTranslations = $stream->readintarray($unpack, $translations, $totalTimesTwo);
97 97
 
Please login to merge, or discard this patch.
src/Loader.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             }
185 185
 
186 186
             // If the locale name doesn't match POSIX style, just include it as-is.
187
-            if (! in_array($locale, $localeNames)) {
187
+            if (!in_array($locale, $localeNames)) {
188 188
                 array_push($localeNames, $locale);
189 189
             }
190 190
         }
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     /**
196 196
      * Sets factory responsible for composing a `CacheInterface`
197 197
      */
198
-    public static function setCacheFactory(CacheFactoryInterface|null $cacheFactory): void
198
+    public static function setCacheFactory(CacheFactoryInterface | null $cacheFactory): void
199 199
     {
200 200
         self::$cacheFactory = $cacheFactory;
201 201
     }
@@ -211,11 +211,11 @@  discard block
 block discarded – undo
211 211
             $domain = $this->defaultDomain;
212 212
         }
213 213
 
214
-        if (! isset($this->domains[$this->locale])) {
214
+        if (!isset($this->domains[$this->locale])) {
215 215
             $this->domains[$this->locale] = [];
216 216
         }
217 217
 
218
-        if (! isset($this->domains[$this->locale][$domain])) {
218
+        if (!isset($this->domains[$this->locale][$domain])) {
219 219
             if (isset($this->paths[$domain])) {
220 220
                 $base = $this->paths[$domain];
221 221
             } else {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      */
278 278
     public function setlocale(string $locale): string
279 279
     {
280
-        if (! empty($locale)) {
280
+        if (!empty($locale)) {
281 281
             $this->locale = $locale;
282 282
         }
283 283
 
Please login to merge, or discard this patch.