@@ -75,7 +75,7 @@ |
||
75 | 75 | 0, |
76 | 76 | ITypes::TYPE_DIR |
77 | 77 | ); |
78 | - } elseif ($this->isNode($this->getStorageSeparator(). $currentPath)) { |
|
78 | + } elseif ($this->isNode($this->getStorageSeparator() . $currentPath)) { |
|
79 | 79 | $sub->setData( |
80 | 80 | $this->expandName($usePath), |
81 | 81 | 0, |
@@ -18,7 +18,7 @@ |
||
18 | 18 | protected function isSubPart(array $what, array $in): bool |
19 | 19 | { |
20 | 20 | $compare = intval(min(count($what), count($in))); |
21 | - for ($i = 0; $i<$compare; $i++) { |
|
21 | + for ($i = 0; $i < $compare; $i++) { |
|
22 | 22 | if ($what[$i] != $in[$i]) { |
23 | 23 | return false; |
24 | 24 | } |
@@ -92,7 +92,7 @@ |
||
92 | 92 | throw new FilesException($this->getFlLang()->flCannotSeekFile($this->compactName($source, $this->getStorageSeparator()))); |
93 | 93 | } |
94 | 94 | // @codeCoverageIgnoreEnd |
95 | - return $this->saveFileStream($dest, $stream,0, false); |
|
95 | + return $this->saveFileStream($dest, $stream, 0, false); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | public function moveFileStream(array $source, array $dest): bool |