@@ -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\Filesystem; |
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\Node; |
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 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace drupol\phpvfs\Exporter; |
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\Utils; |
6 | 6 | |
@@ -56,8 +56,7 @@ discard block |
||
56 | 56 | $first = \reset($this->fragments); |
57 | 57 | |
58 | 58 | return empty($first) ? |
59 | - \DIRECTORY_SEPARATOR : |
|
60 | - $first; |
|
59 | + \DIRECTORY_SEPARATOR : $first; |
|
61 | 60 | } |
62 | 61 | |
63 | 62 | /** |
@@ -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\Commands; |
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 | foreach ($path->getIterator() as $pathPart) { |
31 | 30 | if (null !== $child = $cwd->containsAttributeId($pathPart)) { |
@@ -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\Commands; |
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 | if (\DIRECTORY_SEPARATOR === $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\Commands; |
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\Commands; |
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 | foreach ($path->getIterator() as $pathPart) { |
31 | 30 | if (null !== $child = $cwd->containsAttributeId($pathPart)) { |