Nette\Configurator::loadContainer PHP Метод

loadContainer() публичный Метод

Loads system DI container class and returns its name.
public loadContainer ( ) : string
Результат 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;
    }