--- /dev/null
+<?php
+
+namespace wcf\system\cache\runtime;
+
+use wcf\data\comment\response\ViewableCommentResponse;
+use wcf\data\comment\response\ViewableCommentResponseList;
+
+/**
+ * Runtime cache implementation for viewable comment responses.
+ *
+ * @author Matthias Schmidt
+ * @copyright 2001-2021 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\System\Cache\Runtime
+ * @since 5.5
+ *
+ * @method ViewableCommentResponse[] getCachedObjects()
+ * @method ViewableCommentResponse getObject($objectID)
+ * @method ViewableCommentResponse[] getObjects(array $objectIDs)
+ */
+class ViewableCommentResponseRuntimeCache extends AbstractRuntimeCache
+{
+ /**
+ * @inheritDoc
+ */
+ protected $listClassName = ViewableCommentResponseList::class;
+}
--- /dev/null
+<?php
+
+namespace wcf\system\cache\runtime;
+
+use wcf\data\comment\ViewableComment;
+use wcf\data\comment\ViewableCommentList;
+
+/**
+ * Runtime cache implementation for viewable comments.
+ *
+ * @author Matthias Schmidt
+ * @copyright 2001-2021 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\System\Cache\Runtime
+ * @since 5.5
+ *
+ * @method ViewableComment[] getCachedObjects()
+ * @method ViewableComment getObject($objectID)
+ * @method ViewableComment[] getObjects(array $objectIDs)
+ */
+class ViewableCommentRuntimeCache extends AbstractRuntimeCache
+{
+ /**
+ * @inheritDoc
+ */
+ protected $listClassName = ViewableCommentList::class;
+}