@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | { |
64 | 64 | $path = $this->getPath($file); |
65 | 65 | |
66 | - if (! file_exists($path)) { |
|
66 | + if (!file_exists($path)) { |
|
67 | 67 | throw new FileDoesNotExists; |
68 | 68 | } |
69 | 69 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function createParentFolder($file) |
97 | 97 | { |
98 | - if (! file_exists($folder = dirname($file))) { |
|
98 | + if (!file_exists($folder = dirname($file))) { |
|
99 | 99 | return mkdir(dirname($file), 0775, true); |
100 | 100 | } |
101 | 101 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | protected function getPath($file) |
121 | 121 | { |
122 | - return $this->root . '/' . $file; |
|
122 | + return $this->root.'/'.$file; |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |