Test Failed
Push — master ( ddbc90...3938b9 )
by Maurício
02:20
created
src/Translator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.