Passed
Branch master (abf743)
by Zaahid
03:58
created
Category
src/MbWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
         if ($str !== '') {
346 346
             if ($from !== false && $to === false) {
347 347
                 $str = mb_convert_encoding($str, 'UTF-8', $from);
348
-                return iconv('UTF-8', $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE', $str);
348
+                return iconv('UTF-8', $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE', $str);
349 349
             } elseif ($from === false && $to !== false) {
350 350
                 $str = iconv($this->getIconvAlias($fromCharset), 'UTF-8//TRANSLIT//IGNORE', $str);
351 351
                 return mb_convert_encoding($str, $to, 'UTF-8');
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
             }
355 355
             return iconv(
356 356
                 $this->getIconvAlias($fromCharset),
357
-                $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE',
357
+                $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE',
358 358
                 $str
359 359
             );
360 360
         }
Please login to merge, or discard this patch.