Passed
Pull Request — master (#86)
by
unknown
04:41 queued 01:42
created
src/Command/Create.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,9 @@
 block discarded – undo
174 174
     {
175 175
         $from = getcwd().'/resources/public/';
176 176
         foreach (new \DirectoryIterator($from) as $fileInfo) {
177
-            if($fileInfo->isDot()) continue;
177
+            if($fileInfo->isDot()) {
178
+                continue;
179
+            }
178 180
             $file = $fileInfo->getFilename();
179 181
             $to = $this->filesystem->getFullPath($file);
180 182
             copy($from.$file, $to);
Please login to merge, or discard this patch.