You are here

protected function Kernel::getContainerClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::getContainerClass()

Gets the container class.

Return value

string The container class

2 calls to Kernel::getContainerClass()
Kernel::getKernelParameters in vendor/symfony/http-kernel/Kernel.php
Returns the kernel parameters.
Kernel::initializeContainer in vendor/symfony/http-kernel/Kernel.php
Initializes the service container.

File

vendor/symfony/http-kernel/Kernel.php, line 480

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';
}