@@ -10,7 +10,7 @@ |
||
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 |
@@ -70,7 +70,7 @@ |
||
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 |