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