DeviceDetector\Parser\ParserAbstract::getCache PHP 메소드

getCache() 공개 메소드

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