@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function mkDir(string $dir) |
66 | 66 | { |
67 | - if (! $this->dirExists($dir)) { |
|
67 | + if (!$this->dirExists($dir)) { |
|
68 | 68 | mkdir($dir, 0755, true); |
69 | 69 | } |
70 | 70 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function read(string $file): string |
108 | 108 | { |
109 | - if (! $this->fileExists($file)) { |
|
109 | + if (!$this->fileExists($file)) { |
|
110 | 110 | throw new FileNotFoundException(sprintf(FileNotFoundException::TEXT, $file)); |
111 | 111 | } |
112 | 112 | return file_get_contents($file); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | */ |
124 | 124 | protected function getFilesIterator(string $dir) |
125 | 125 | { |
126 | - if (! $this->dirExists($dir)) { |
|
126 | + if (!$this->dirExists($dir)) { |
|
127 | 127 | throw new DirNotFoundException(sprintf(DirNotFoundException::TEXT, $dir)); |
128 | 128 | } |
129 | 129 |