@@ -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\Filesystem; |
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 | |
@@ -152,8 +152,7 @@ discard block |
||
152 | 152 | $newPosition = $this->getPosition() + $offset; |
153 | 153 | |
154 | 154 | $newPosition = $contentSize < $newPosition ? |
155 | - $contentSize : |
|
156 | - $newPosition; |
|
155 | + $contentSize : $newPosition; |
|
157 | 156 | |
158 | 157 | $this->setPosition($newPosition); |
159 | 158 |
@@ -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 | 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\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\Node; |
6 | 6 |