DeviceDetector\Parser\ParserAbstract::getCache PHP Method

getCache() public method

Returns Cache object
public getCache ( ) : DeviceDetector\Cache\Cache | CacheProvider
return DeviceDetector\Cache\Cache | Doctrine\Common\Cache\CacheProvider
    public function getCache()
    {
        if (!empty($this->cache)) {
            return $this->cache;
        }
        return new StaticCache();
    }