Code Duplication    Length = 7-7 lines in 2 locations

src/Eccube/Command/GeneratorCommand/AbstractPluginGenerator.php 2 locations

@@ 497-503 (lines=7) @@
494
        }
495
        $this->output->writeln('');
496
        $this->output->writeln('[+]File system');
497
        if (!empty($dirFileOk)) {
498
            $this->output->writeln('');
499
            $this->output->writeln(' this files and folders were created.');
500
            foreach ($dirFileOk as $path) {
501
                $this->output->writeln('<info> - '.$path.'</info>');
502
            }
503
        }
504
505
        if (!empty($dirFileNg)) {
506
            $this->output->writeln('');
@@ 505-511 (lines=7) @@
502
            }
503
        }
504
505
        if (!empty($dirFileNg)) {
506
            $this->output->writeln('');
507
            $this->output->writeln(' this files and folders was not created.');
508
            foreach ($dirFileOk as $path) {
509
                $this->output->writeln('<error> - '.$path.'</error>');
510
            }
511
        }
512
513
    }
514
}