PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
core
/
media
/
src
/
Repositories
/
Caches
<?php namespace Botble\Media\Repositories\Caches; use Botble\Media\Repositories\Interfaces\MediaFileInterface; use Botble\Support\Repositories\Caches\CacheAbstractDecorator; class MediaFileCacheDecorator extends CacheAbstractDecorator implements MediaFileInterface { /** * {@inheritDoc} */ public function createName($name, $folder) { return $this->flushCacheAndUpdateData(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function createSlug($name, $extension, $folder) { return $this->flushCacheAndUpdateData(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getFilesByFolderId($folderId, array $params = [], $withFolders = true, $folderParams = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function emptyTrash() { return $this->flushCacheAndUpdateData(__FUNCTION__, func_get_args()); } /** * {@inheritDoc} */ public function getTrashed($folderId, array $params = [], $withFolders = true, $folderParams = []) { return $this->getDataIfExistCache(__FUNCTION__, func_get_args()); } }
[+]
..
[-] MediaSettingCacheDecorator.php
[edit]
[-] MediaFileCacheDecorator.php
[edit]
[-] MediaFolderCacheDecorator.php
[edit]