Test Failed
Push — master ( 189f6d...4ce78e )
by Maurício
01:58
created
src/Translator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      */
111 111
     public function __construct(string $filename)
112 112
     {
113
-        if (! is_readable($filename)) {
113
+        if (!is_readable($filename)) {
114 114
             $this->error = self::ERROR_DOES_NOT_EXIST;
115 115
 
116 116
             return;
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
     {
327 327
         // this should contains all strings separated by NULLs
328 328
         $key = implode(chr(0), [$msgid, $msgidPlural]);
329
-        if (! array_key_exists($key, $this->cacheTranslations)) {
329
+        if (!array_key_exists($key, $this->cacheTranslations)) {
330 330
             return $number !== 1 ? $msgidPlural : $msgid;
331 331
         }
332 332
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
             return '';
340 340
         }
341 341
 
342
-        if (! isset($list[$select])) {
342
+        if (!isset($list[$select])) {
343 343
             return $list[0];
344 344
         }
345 345
 
Please login to merge, or discard this patch.