Test Failed
Push — master ( 3938b9...3ff2c6 )
by Maurício
04:43
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
 
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.