Widget::getCache PHP Method

getCache() public method

Get cache object
public getCache ( ) : CampCache
return CampCache
    public function getCache()
    {
        if ($this->cache === NULL) {
            $this->cache = CampCache::singleton();
        }
        return $this->cache;
    }