Completed
Push — master ( d6f21c...ed26ae )
by Pol
02:31
created
src/Command/Get.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace drupol\phpvfs\Command;
6 6
 
@@ -28,8 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
         /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
30 30
         $child = $path->isAbsolute() ?
31
-            $vfs->getCwd()->root() :
32
-            $vfs->getCwd();
31
+            $vfs->getCwd()->root() : $vfs->getCwd();
33 32
 
34 33
         foreach ($path->getIterator() as $pathPart) {
35 34
             $child = $child->containsAttributeId($pathPart);
Please login to merge, or discard this patch.