*/ trait FormattingHelpers { /** * Comes from the SensioGeneratorBundle. * @see https://github.com/sensio/SensioGeneratorBundle/blob/master/Command/Helper/DialogHelper.php#L52 * * @param OutputInterface $output The output. * @param string $text A text message. * @param string $style A style to apply on the section. */ protected function writeSection(OutputInterface $output, $text, $style = 'bg=blue;fg=white') { $output->writeln(array( '', $this->getHelperSet()->get('formatter')->formatBlock($text, $style, true), '', )); } /** * Ask confirmation from the user. * * @param OutputInterface $output The output. * @param string $question A given question. * @param string $default A default response. */ protected function askConfirmation(OutputInterface $output, $question, $default = null) { return $this->getHelperSet()->get('dialog')->askConfirmation($output, $question, $default); } /** * @param OutputInterface $output The output. * @param string $filename The filename. */ protected function writeNewFile(OutputInterface $output, $filename) { $output->writeln('>> File+ ' . $filename); } /** * @param OutputInterface $output The output. * @param string $directory The directory. */ protected function writeNewDirectory(OutputInterface $output, $directory) { $output->writeln('>> Dir+ ' . $directory); } }