PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
page
/
src
/
Repositories
/
Caches
<?php namespace Botble\Page\Repositories\Caches; use Botble\Page\Repositories\Interfaces\PageInterface; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; class PageCacheDecorator extends CacheAbstractDecorator implements PageInterface { /** * {@inheritDoc} */ public function getDataSiteMap() { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getFeaturedPages($limit) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function whereIn($array, $select = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getSearch($query, $limit = 10) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllPages($active = true) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[-] PageCacheDecorator.php
[edit]
[+]
..