JonathanTorres\Construct\Commands\ConstructCommand::initializedGitMessage PHP Метод

initializedGitMessage() приватный Метод

Show message if an empty git repo is initialized.
private initializedGitMessage ( Symfony\Component\Console\Output\OutputInterface $output ) : void
$output Symfony\Component\Console\Output\OutputInterface
Результат void
    private function initializedGitMessage($output)
    {
        if ($this->settings->withGitInit()) {
            $folder = $this->construct->getprojectLower();
            $output->writeln('<info>Initialized git repo in "' . $folder . '".</info>');
        }
    }