Gets the container class.
Return value
string The container class
File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 554
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernel
Code
protected function getContainerClass() {
return $this->name . ucfirst($this->environment) . ($this->debug ? 'Debug' : '') . 'ProjectContainer';
}