Passed
Push — master ( 5e3d3b...b78c0b )
by Pol
02:21
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/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/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/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.
src/Node/FilesystemNodeInterface.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/Utils/PathInterface.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\Utils;
6 6
 
Please login to merge, or discard this patch.
src/Node/Directory.php 1 patch
Spacing   +3 added lines, -5 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
 
@@ -96,8 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
             /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
98 98
             $cwd = $path->isAbsolute() ?
99
-                $this->root() :
100
-                $this;
99
+                $this->root() : $this;
101 100
 
102 101
             foreach ($path->getIterator() as $pathPart) {
103 102
                 $pathPartExist = false;
@@ -135,8 +134,7 @@  discard block
 block discarded – undo
135 134
 
136 135
         /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
137 136
         $cwd = $path->isAbsolute() ?
138
-            $this->root() :
139
-            $this;
137
+            $this->root() : $this;
140 138
 
141 139
         foreach ($path->getIterator() as $pathPart) {
142 140
             $cwd = $cwd->containsAttributeId($pathPart);
Please login to merge, or discard this patch.