Passed
Push — master ( 5e3d3b...b78c0b )
by Pol
02:21
created
src/StreamWrapper/PhpVfs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/StreamWrapper/Handler/FileInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/StreamWrapper/Handler/File.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/StreamWrapper/StreamWrapperInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Importer/Filesystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace drupol\phpvfs\Importer;
6 6
 
Please login to merge, or discard this patch.
src/Utils/Path.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 
@@ -94,8 +94,7 @@  discard block
 block discarded – undo
94 94
         $first = \reset($this->fragments);
95 95
 
96 96
         return false === $first ?
97
-            \DIRECTORY_SEPARATOR :
98
-            $first;
97
+            \DIRECTORY_SEPARATOR : $first;
99 98
     }
100 99
 
101 100
     /**
Please login to merge, or discard this patch.