コード例 #1
0
ファイル: Composer.php プロジェクト: clarkeash/machine
 public function getClassNamespace($name)
 {
     $name = Utils::switchToNamespaceSlashes($name);
     if (Str::startsWith($name, $this->getRootNamespace())) {
         return $name;
     }
     return $this->getRootNamespace() . '\\' . $name;
 }