Sulu\Bundle\GeneratorBundle\Command\Helper\DialogHelper::writeGeneratorSummary PHP Method

writeGeneratorSummary() public method

public writeGeneratorSummary ( Symfony\Component\Console\Output\OutputInterface $output, $errors )
$output Symfony\Component\Console\Output\OutputInterface
    public function writeGeneratorSummary(OutputInterface $output, $errors)
    {
        if (!$errors) {
            $this->writeSection($output, 'You can now start using the generated code!');
        } else {
            $this->writeSection($output, ['The command was not able to configure everything automatically.', 'You must do the following changes manually.'], 'error');
            $output->writeln($errors);
        }
    }