From 07dfb677fd1e072a96f782b4ea63ac943165f9e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joshua=20R=C3=BCsweg?= Date: Fri, 27 Dec 2019 15:27:28 +0100 Subject: [PATCH] Add ViewableArticleContentRuntimeCache --- ...ewableArticleContentRuntimeCache.class.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 wcfsetup/install/files/lib/system/cache/runtime/ViewableArticleContentRuntimeCache.class.php diff --git a/wcfsetup/install/files/lib/system/cache/runtime/ViewableArticleContentRuntimeCache.class.php b/wcfsetup/install/files/lib/system/cache/runtime/ViewableArticleContentRuntimeCache.class.php new file mode 100644 index 0000000000..46c90d9534 --- /dev/null +++ b/wcfsetup/install/files/lib/system/cache/runtime/ViewableArticleContentRuntimeCache.class.php @@ -0,0 +1,24 @@ + + * @package WoltLabSuite\Core\System\Cache\Runtime + * @since 5.2 + * + * @method ViewableArticleContent[] getCachedObjects() + * @method ViewableArticleContent getObject($objectID) + * @method ViewableArticleContent[] getObjects(array $objectIDs) + */ +class ViewableArticleContentRuntimeCache extends AbstractRuntimeCache { + /** + * @inheritDoc + */ + protected $listClassName = ViewableArticleContentList::class; +} -- 2.20.1