Completed
Push — master ( e6850e...e5139b )
by Pol
02:35 queued 21s
created
src/Command/CommandInterface.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\Command;
6 6
 
Please login to merge, or discard this patch.
src/Command/Exist.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\Command;
6 6
 
@@ -25,8 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
             /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
27 27
             $cwd = $path->isAbsolute() ?
28
-                $vfs->getCwd()->root() :
29
-                $vfs->getCwd();
28
+                $vfs->getCwd()->root() : $vfs->getCwd();
30 29
 
31 30
             foreach ($path->getIterator() as $pathPart) {
32 31
                 $pathPartExist = false;
Please login to merge, or discard this patch.