Passed
Push — release-2.x ( e7ff42...5f707c )
by Slye
01:21
created
src/FileManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             throw new \RuntimeException(sprintf('Directory "%s" was not created', $this->params['files_path']));
56 56
         }
57 57
         $files = scandir($this->params['files_path'], SCANDIR_SORT_ASCENDING);
58
-        $this->files = array_filter($files, function ($k) {
58
+        $this->files = array_filter($files, function($k) {
59 59
             $return = [];
60 60
             if ($k !== '..' && $k !== '.') {
61 61
                 $return[] = $k;
Please login to merge, or discard this patch.