Nette\Configurator::loadContainer PHP Method

loadContainer() public method

Loads system DI container class and returns its name.
public loadContainer ( ) : string
return string
    public function loadContainer()
    {
        $loader = new DI\ContainerLoader($this->getCacheDirectory() . '/Nette.Configurator', $this->parameters['debugMode']);
        $class = $loader->load([$this, 'generateContainer'], [$this->parameters, $this->files, PHP_VERSION_ID - PHP_RELEASE_VERSION]);
        return $class;
    }