Passed
Push — master ( 728467...6349cc )
by Petr
07:23
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-tests/TraitsTests/ToStringTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function filterDataProvider(): array
25 25
     {
26 26
         $stream1 = fopen('php://memory', 'r+');
27
-        fwrite($stream1,'Just for unable read');
27
+        fwrite($stream1, 'Just for unable read');
28 28
         return [
29 29
             [$stream1, 'Just for unable read'],
30 30
             ['there is no string', 'there is no string'],
Please login to merge, or discard this patch.