@@ -1,6 +1,6 @@ |
||
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 |
@@ -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 | |
@@ -25,8 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */ |
27 | 27 | $cwd = $path->isAbsolute() ? |
28 | - $vfs->getCwd()->root() : |
|
29 | - $vfs->getCwd(); |
|
28 | + $vfs->getCwd()->root() : $vfs->getCwd(); |
|
30 | 29 | |
31 | 30 | foreach ($path->getIterator() as $pathPart) { |
32 | 31 | $pathPartExist = false; |
@@ -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 | |
@@ -24,8 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */ |
26 | 26 | $cwd = $path->isAbsolute() ? |
27 | - $vfs->getCwd()->root() : |
|
28 | - $vfs->getCwd(); |
|
27 | + $vfs->getCwd()->root() : $vfs->getCwd(); |
|
29 | 28 | |
30 | 29 | if ($path->isRoot()) { |
31 | 30 | $vfs->setCwd($cwd); |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -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); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace drupol\phpvfs\Utils; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace drupol\phpvfs; |
6 | 6 |
@@ -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\Node; |
6 | 6 | |
@@ -96,8 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */ |
98 | 98 | $cwd = $path->isAbsolute() ? |
99 | - $this->root() : |
|
100 | - $this; |
|
99 | + $this->root() : $this; |
|
101 | 100 | |
102 | 101 | foreach ($path->getIterator() as $pathPart) { |
103 | 102 | $pathPartExist = false; |
@@ -135,8 +134,7 @@ discard block |
||
135 | 134 | |
136 | 135 | /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */ |
137 | 136 | $cwd = $path->isAbsolute() ? |
138 | - $this->root() : |
|
139 | - $this; |
|
137 | + $this->root() : $this; |
|
140 | 138 | |
141 | 139 | foreach ($path->getIterator() as $pathPart) { |
142 | 140 | $cwd = $cwd->containsAttributeId($pathPart); |