Completed
Push — master ( 6b6f0c...23d46a )
by Pol
02:54
created
src/Filesystem/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\Filesystem;
6 6
 
Please login to merge, or discard this patch.
src/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;
6 6
 
Please login to merge, or discard this patch.
src/Exporter/AttributeAscii.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\Exporter;
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
 
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Node/DirectoryInterface.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\Node;
6 6
 
Please login to merge, or discard this patch.
src/Node/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\Node;
6 6
 
Please login to merge, or discard this patch.
src/Filesystem/FilesystemInterface.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\Filesystem;
6 6
 
Please login to merge, or discard this patch.
src/Node/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\Node;
6 6
 
@@ -152,8 +152,7 @@  discard block
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Node/FilesystemNode.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\Node;
6 6
 
Please login to merge, or discard this patch.