Passed
Push — analysis-64GVR4 ( 56ed84 )
by Arnaud
05:44 queued 14s
created
src/Util.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public static function joinPath(array $strings): string
139 139
     {
140
-        array_walk($strings, function (&$value) {
140
+        array_walk($strings, function(&$value) {
141 141
             $value = str_replace('\\', '/', $value);
142 142
             $value = trim($value, '/');
143 143
         });
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public static function joinFile(array $strings): string
156 156
     {
157
-        array_walk($strings, function (&$value) {
157
+        array_walk($strings, function(&$value) {
158 158
             $value = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $value);
159 159
             $value = trim($value, DIRECTORY_SEPARATOR);
160 160
         });
Please login to merge, or discard this patch.