PhpSigep\Config::getCacheInstance PHP Method

getCacheInstance() public method

Este não é o melhor lugar para este método, mas dada a simplicidade do projeto ele pode ficar aqui por enquanto.
public getCacheInstance ( )
    public function getCacheInstance()
    {
        if (!$this->cacheInstance) {
            $factory = $this->getCacheFactory();
            $this->cacheInstance = $factory->createService($this);
        }
        return $this->cacheInstance;
    }