@@ -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\StreamWrapper; |
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\StreamWrapper\Handler; |
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\StreamWrapper\Handler; |
6 | 6 | |
@@ -199,8 +199,7 @@ discard block |
||
199 | 199 | $newPosition = $this->getPosition() + $offset; |
200 | 200 | |
201 | 201 | $newPosition = $contentSize < $newPosition ? |
202 | - $contentSize : |
|
203 | - $newPosition; |
|
202 | + $contentSize : $newPosition; |
|
204 | 203 | |
205 | 204 | $this->setPosition($newPosition); |
206 | 205 |
@@ -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\StreamWrapper; |
6 | 6 |