AssetCompress\Routing\Filter\AssetCompressorFilter::_getConfig PHP Method

_getConfig() protected method

Config setter, used for testing the filter.
protected _getConfig ( ) : AssetConfig
return MiniAsset\AssetConfig The completed config instance.
    protected function _getConfig()
    {
        if ($this->config === null) {
            $configFinder = new ConfigFinder();
            $this->config = $configFinder->loadAll();
        }
        return $this->config;
    }