PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
blog
/
src
/
Repositories
/
Caches
<?php namespace Botble\Blog\Repositories\Caches; use Botble\Blog\Repositories\Interfaces\PostInterface; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; class PostCacheDecorator extends CacheAbstractDecorator implements PostInterface { /** * {@inheritDoc} */ public function getFeatured(int $limit = 5, array $with = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getListPostNonInList(array $selected = [], $limit = 12, array $with = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getByUserId($authorId, $limit = 6) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getDataSiteMap() { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getByTag($tag, $paginate = 12) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getRelated($slug, $limit = 3) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getRecentPosts($limit = 5, $categoryId = 0) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getSearch($query, $limit = 10, $paginate = 10) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getByCategory($categoryId, $paginate = 12, $limit = 0) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getAllPosts($perPage = 12, $active = true, array $with = ['slugable']) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getPopularPosts($limit, array $args = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getRelatedCategoryIds($model) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getFilters(array $filters) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[-] TagCacheDecorator.php
[edit]
[-] PostCacheDecorator.php
[edit]
[+]
..
[-] CategoryCacheDecorator.php
[edit]