/**
  * Show message if an empty git repo is initialized.
  *
  * @param \Symfony\Component\Console\Output\OutputInterface $output
  *
  * @return void
  */
 private function initializedGitMessage($output)
 {
     if ($this->settings->withGitInit()) {
         $folder = $this->construct->getprojectLower();
         $output->writeln('<info>Initialized git repo in "' . $folder . '".</info>');
     }
 }
Example #2
0
 /**
  * Construct a correct project namespace name.
  *
  * @param boolean $useDoubleSlashes Whether or not to create the namespace with double slashes \\
  *
  * @return string
  */
 protected function createNamespace($useDoubleSlashes = false)
 {
     $namespace = $this->settings->getNamespace();
     $projectName = $this->settings->getProjectName();
     if ($namespace === 'Vendor\\Project' || $namespace === $projectName) {
         return $this->str->createNamespace($projectName, true, $useDoubleSlashes);
     }
     return $this->str->createNamespace($namespace, false, $useDoubleSlashes);
 }