Passed
Push — master ( 1ea99c...4deb53 )
by Petr
02:13
created
php-src/DataSources/Volume.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             return $this;
41 41
         }
42 42
 
43
-        $iter = $this->recursive ? $this->getRecursive($path) : $this->getFlat($path) ;
43
+        $iter = $this->recursive ? $this->getRecursive($path) : $this->getFlat($path);
44 44
         $iter = new CallbackFilterIterator($iter, [$this, 'filterDoubleDot']);
45 45
         if ($this->filterCallback) {
46 46
             $iter = new CallbackFilterIterator($iter, $this->filterCallback);
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
     public function filterDoubleDot(SplFileInfo $info): bool
91 91
     {
92
-        return ( ITree::PARENT_DIR != $info->getFilename() ) ;
92
+        return (ITree::PARENT_DIR != $info->getFilename());
93 93
     }
94 94
 
95 95
     /**
Please login to merge, or discard this patch.