AssetCompress\View\Helper\AssetCompressHelper::factory PHP Méthode

factory() protected méthode

Get the AssetCompress factory based on the config object.
protected factory ( ) : Factory
Résultat AssetCompress\Factory
    protected function factory()
    {
        if (empty($this->factory)) {
            $this->config->theme($this->theme);
            $this->factory = new Factory($this->config);
        }
        return $this->factory;
    }