PPI\Framework\Module\AbstractModule::getConfigLoader PHP Метод

getConfigLoader() защищенный Метод

Returns a ConfigLoader instance.
protected getConfigLoader ( ) : ConfigLoader
Результат PPI\Framework\Config\ConfigLoader
    protected function getConfigLoader()
    {
        if (null === $this->configLoader) {
            $this->configLoader = new ConfigLoader($this->getPath() . '/resources/config');
        }
        return $this->configLoader;
    }