Code Duplication    Length = 7-7 lines in 2 locations

src/Console/Command/ModuleCreateCommand.php 2 locations

@@ 408-414 (lines=7) @@
405
     * @param OutputInterface $output
406
     * @return boolean
407
     */
408
    private function askForTemplating(InputInterface $input, OutputInterface $output)
409
    {
410
        $questionHelper = $this->getHelper('question');
411
        $question = new ConfirmationQuestion("Do you need templates? (yes/no):\n", false);
412
413
        return $questionHelper->ask($input, $output, $question);
414
    }
415
416
    private function askForRouting(InputInterface $input, OutputInterface $output)
417
    {
@@ 416-422 (lines=7) @@
413
        return $questionHelper->ask($input, $output, $question);
414
    }
415
416
    private function askForRouting(InputInterface $input, OutputInterface $output)
417
    {
418
        $questionHelper = $this->getHelper('question');
419
        $question = new ConfirmationQuestion("Do you need routing? (yes/no):\n", false);
420
421
        return $questionHelper->ask($input, $output, $question);
422
    }
423
424
    private function chooseTemplatingEngine($input, $output)
425
    {