/
home
/
techb158
/
immovalet.com
/
platform
/
packages
/
page
/
src
/
Repositories
/
Caches
/
/home/techb158/immovalet.com/platform/packages/page/src/Repositories/Caches
mkdir
upload
Name
Size
Mode
Actions
PageCacheDecorator.php
1105
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/packages/page/src/Repositories/Caches/PageCacheDecorator.php
(1105B)
<?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()); } }
Save
cmd:
run