AssetCompress\View\Helper\AssetCompressHelper::factory PHP Method

factory() protected method

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