You are here

protected function Kernel::getContainerBaseClass in Zircon Profile 8

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

Gets the container's base class.

All names except Container must be fully qualified.

Return value

string

1 call to Kernel::getContainerBaseClass()
Kernel::initializeContainer in vendor/symfony/http-kernel/Kernel.php
Initializes the service container.

File

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

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

protected function getContainerBaseClass() {
  return 'Container';
}