Esempio n. 1
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);
 }