Completed
Push — master ( 677b65...ef5d85 )
by Pol
04:12
created
src/Node/Directory.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,8 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
             /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
100 100
             $cwd = $path->isAbsolute() ?
101
-                $this->root() :
102
-                $this;
101
+                $this->root() : $this;
103 102
 
104 103
             foreach ($path->getIterator() as $pathPart) {
105 104
                 $pathPartExist = false;
@@ -141,8 +140,7 @@  discard block
 block discarded – undo
141 140
 
142 141
         /** @var \drupol\phpvfs\Node\DirectoryInterface $cwd */
143 142
         $cwd = $path->isAbsolute() ?
144
-            $this->root() :
145
-            $this;
143
+            $this->root() : $this;
146 144
 
147 145
         foreach ($path->getIterator() as $pathPart) {
148 146
             $cwd = $cwd->containsAttributeId($pathPart);
Please login to merge, or discard this patch.
src/StreamWrapper/Handler/File.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,8 +191,7 @@
 block discarded – undo
191 191
         $newPosition = $this->getPosition() + $offset;
192 192
 
193 193
         $newPosition = $contentSize < $newPosition ?
194
-            $contentSize :
195
-            $newPosition;
194
+            $contentSize : $newPosition;
196 195
 
197 196
         $this->setPosition($newPosition);
198 197
 
Please login to merge, or discard this patch.
src/Utils/Path.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,8 +94,7 @@
 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.