Passed
Push — master ( 9ea830...49221b )
by Petr
08:01
created
php-src/Processing/Storage/Dirs/CanDirFlat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
php-src/Traits/TSubPart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
php-src/Processing/Storage/ProcessFileStream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.