Test Failed
Push — master ( e18acf...2713a2 )
by Marcio
12:48
created
src/Ballybran/Helpers/Stdlib/CreateFiles.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
     private function createWritableFolder($file)
15 15
     {
16 16
         $currPath = '';
17
-        $path = explode( "/" , $file );
18
-        $currPath .= trim( $path[0] );
19
-        if($currPath != '.' && $currPath != '/' ) {
20
-            @mkdir( DIR_STORAGE.$currPath , 0777 , true );
17
+        $path = explode("/", $file);
18
+        $currPath .= trim($path[0]);
19
+        if ($currPath != '.' && $currPath != '/') {
20
+            @mkdir(DIR_STORAGE . $currPath, 0777, true);
21 21
         }
22 22
 
23 23
     }
Please login to merge, or discard this patch.