@@ -98,8 +98,7 @@ discard block |
||
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 |
||
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); |
@@ -191,8 +191,7 @@ |
||
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 |
@@ -94,8 +94,7 @@ |
||
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 | /** |