本文整理匯總了PHP中Illuminate\Contracts\Foundation\Application::getNamespace方法的典型用法代碼示例。如果您正苦於以下問題:PHP Application::getNamespace方法的具體用法?PHP Application::getNamespace怎麽用?PHP Application::getNamespace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Illuminate\Contracts\Foundation\Application
的用法示例。
在下文中一共展示了Application::getNamespace方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: formatHelperName
protected function formatHelperName($helper)
{
$namespace = $this->app->getNamespace();
if (!Str::contains($helper, $namespace)) {
$helper = $namespace . 'Helpers\\' . $helper;
}
return $helper;
}
示例2: parseName
/**
* Parse the name and format according to the root namespace.
*
* @param string $name
* @return string
*/
protected function parseName($name)
{
$rootNamespace = $this->laravel->getNamespace();
if (Str::startsWith($name, $rootNamespace)) {
return $name;
}
if (Str::contains($name, '/')) {
$name = str_replace('/', '\\', $name);
}
return $this->parseName($this->getDefaultNamespace(trim($rootNamespace, '\\')) . '\\' . $name);
}
示例3: replaceDummyRootNamespace
/**
* Replace the dummy root namespace of the stub class
*
* @param string $stub
* @return string
*/
protected function replaceDummyRootNamespace($stub)
{
return str_replace('DummyRootNamespace', $this->laravel->getNamespace(), $stub);
}