function Bundle::getNamespace
Overrides BundleInterface::getNamespace
1 call to Bundle::getNamespace()
- Bundle::getContainerExtensionClass in vendor/
symfony/ http-kernel/ Bundle/ Bundle.php - Returns the bundle's container extension class.
File
-
vendor/
symfony/ http-kernel/ Bundle/ Bundle.php, line 90
Class
- Bundle
- An implementation of BundleInterface that adds a few conventions for DependencyInjection extensions.
Namespace
Symfony\Component\HttpKernel\BundleCode
public function getNamespace() : string {
if (!isset($this->namespace)) {
$this->parseClassName();
}
return $this->namespace;
}