for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\Menu\Repositories\Cache;
use Modules\Core\Repositories\Cache\BaseCacheDecorator;
use Modules\Menu\Repositories\MenuRepository;
class CacheMenuDecorator extends BaseCacheDecorator implements MenuRepository
{
/**
* @var MenuRepository
*/
protected $repository;
public function __construct(MenuRepository $menu)
parent::__construct();
$this->entityName = 'menus';
$this->repository = $menu;
}
* Get all online menus
* @return object
public function allOnline()
return $this->cache
->tags($this->entityName, 'global')
->remember("{$this->locale}.{$this->entityName}.allOnline", $this->cacheTime,
function () {
return $this->repository->allOnline();
);