PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
contact
/
src
/
Repositories
/
Caches
<?php namespace Botble\Contact\Repositories\Caches; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; use Botble\Contact\Repositories\Interfaces\ContactInterface; class ContactCacheDecorator extends CacheAbstractDecorator implements ContactInterface { /** * {@inheritDoc} */ public function getUnread($select = ['*']) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function countUnread() { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[+]
..
[-] ContactCacheDecorator.php
[edit]
[-] ContactReplyCacheDecorator.php
[edit]