Completed
Pull Request — master (#711)
by
unknown
20s
created
src/Gaufrette/Adapter/Phpseclib3Sftp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 {
Please login to merge, or discard this patch.