Completed
Push — master ( 829d5f...639b0a )
by Mark
8s
created
src/MigrationCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         $path = $path.'/'.date('Y').'/'.date('m');
12 12
 
13
-        if (! $this->files->exists($path)) {
13
+        if ( ! $this->files->exists($path)) {
14 14
             $this->files->makeDirectory($path, 0775, true);
15 15
         }
16 16
 
Please login to merge, or discard this patch.
src/Commands/MigrateOrganise.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
             $datePath = $this->migrator->getDateFolderStructure($migration);
71 71
 
72 72
             // Create folder if it does not already exist
73
-            if (! $this->files->exists($basePath.'/'.$datePath)) {
73
+            if ( ! $this->files->exists($basePath.'/'.$datePath)) {
74 74
                 $this->files->makeDirectory($basePath.'/'.$datePath, 0775, true);
75 75
             }
76 76
 
Please login to merge, or discard this patch.