PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
src
/
Repositories
/
Caches
<?php namespace Botble\Blog\Repositories\Caches; use Botble\Blog\Repositories\Interfaces\TagInterface; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; class TagCacheDecorator extends CacheAbstractDecorator implements TagInterface { /** * {@inheritDoc} */ public function getDataSiteMap() { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getPopularTags($limit, array $with = ['slugable'], array $withCount = ['posts']) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllTags($active = true) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[-] TagCacheDecorator.php
[edit]
[-] PostCacheDecorator.php
[edit]
[+]
..
[-] CategoryCacheDecorator.php
[edit]