PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
blog
/
src
/
Repositories
/
Caches
<?php namespace Botble\Blog\Repositories\Caches; use Botble\Blog\Repositories\Interfaces\CategoryInterface; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; class CategoryCacheDecorator extends CacheAbstractDecorator implements CategoryInterface { /** * {@inheritDoc} */ public function getDataSiteMap() { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getFeaturedCategories($limit, array $with = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllCategories(array $condition = [], array $with = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getCategoryById($id) { return $this->flushCacheAndUpdateData(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getCategories(array $select, array $orderBy) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllRelatedChildrenIds($id) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllCategoriesWithChildren(array $condition = [], array $with = [], array $select = ['*']) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getFilters($model) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getPopularCategories(int $limit, array $with = ['slugable'], array $withCount = ['posts']) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[-] TagCacheDecorator.php
[edit]
[-] PostCacheDecorator.php
[edit]
[+]
..
[-] CategoryCacheDecorator.php
[edit]