Puli\Manager\Api\Container::getInstallerManager PHP Метод

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

Returns the installer manager.
public getInstallerManager ( ) : Puli\Manager\Api\Installer\InstallerManager
Результат Puli\Manager\Api\Installer\InstallerManager The installer manager.
    public function getInstallerManager()
    {
        if (!$this->started) {
            throw new LogicException('Puli was not started');
        }
        if (!$this->installerManager && $this->context instanceof ProjectContext) {
            $this->installerManager = new ModuleFileInstallerManager($this->getRootModuleFileManager(), $this->getModuleManager()->getModules());
        }
        return $this->installerManager;
    }