@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | |
201 | 201 | protected function computePath($key) |
202 | 202 | { |
203 | - return $this->directory . '/' . ltrim($key, '/'); |
|
203 | + return $this->directory.'/'.ltrim($key, '/'); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | protected function fetchKeys($directory = '', $onlyKeys = true) |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | continue; |
219 | 219 | } |
220 | 220 | |
221 | - $path = ltrim($directory . '/' . $filename, '/'); |
|
221 | + $path = ltrim($directory.'/'.$filename, '/'); |
|
222 | 222 | if (isset($stat['type']) && $stat['type'] === NET_SFTP_TYPE_DIRECTORY) { |
223 | 223 | $keys['dirs'][] = $path; |
224 | 224 | } else { |