Phalcon\Mvc\Model\MetaData\Wincache::getCacheBackend PHP Метод

getCacheBackend() защищенный Метод

protected getCacheBackend ( ) : Wincache
Результат Phalcon\Cache\Backend\Wincache
    protected function getCacheBackend()
    {
        if (null === $this->wincache) {
            $this->wincache = new CacheBackend(new CacheFrontend(['lifetime' => $this->options['lifetime']]), []);
        }
        return $this->wincache;
    }