Passed
Pull Request — master (#9)
by
unknown
02:24
created
src/MbWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
         if ($str !== '') {
348 348
             if ($from !== false && $to === false) {
349 349
                 $str = \mb_convert_encoding($str, 'UTF-8', $from);
350
-                return \iconv('UTF-8', $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE', $str);
350
+                return \iconv('UTF-8', $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE', $str);
351 351
             } elseif ($from === false && $to !== false) {
352 352
                 $str = \iconv($this->getIconvAlias($fromCharset), 'UTF-8//TRANSLIT//IGNORE', $str);
353 353
                 return \mb_convert_encoding($str, $to, 'UTF-8');
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
             }
357 357
             return \iconv(
358 358
                 $this->getIconvAlias($fromCharset),
359
-                $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE',
359
+                $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE',
360 360
                 $str
361 361
             );
362 362
         }
Please login to merge, or discard this patch.