Passed
Push — master ( 778ac9...8dd292 )
by Daniel
01:32
created
source/InputOutputStrings.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -61,14 +61,14 @@
 block discarded – undo
61 61
                 break;
62 62
             default:
63 63
                 $arrayStandard = [
64
-                    'remove comma followed by double quotes' => [',"', '',],
65
-                    'remove dot'                             => ['.', '',],
66
-                    'remove double quotes'                   => ['"', '',],
67
-                    'remove double quotes followed by comma' => ['",', '',],
68
-                    'remove pipeline'                        => ['|', '',],
69
-                    'remove slash'                           => ['/', '',],
70
-                    'replace dash with space'                => ['-', ' ',],
71
-                    'replace comma with dot'                 => [',', '.',],
64
+                    'remove comma followed by double quotes' => [',"', '', ],
65
+                    'remove dot'                             => ['.', '', ],
66
+                    'remove double quotes'                   => ['"', '', ],
67
+                    'remove double quotes followed by comma' => ['",', '', ],
68
+                    'remove pipeline'                        => ['|', '', ],
69
+                    'remove slash'                           => ['/', '', ],
70
+                    'replace dash with space'                => ['-', ' ', ],
71
+                    'replace comma with dot'                 => [',', '.', ],
72 72
                 ];
73 73
                 if (array_key_exists($strManipulationRule, $arrayStandard)) {
74 74
                     $outString = str_replace($arrayStandard[0], $arrayStandard[1], $outString);
Please login to merge, or discard this patch.