Passed
Push — master ( 63ac43...3e0516 )
by Amin
04:14
created
src/FileManager.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,9 @@
 block discarded – undo
91 91
         static::makeDir($dst);
92 92
 
93 93
         foreach (scandir($src) as $file) {
94
-            if (in_array($file, [".", ".."])) continue;
94
+            if (in_array($file, [".", ".."])) {
95
+                continue;
96
+            }
95 97
 
96 98
             if (is_dir($src . DIRECTORY_SEPARATOR . $file)) {
97 99
                 static::moveDir($src . DIRECTORY_SEPARATOR . $file, $dst . DIRECTORY_SEPARATOR . $file);
Please login to merge, or discard this patch.