@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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); |