1f9a67f8d8a6ac715825b66cd17386ef72d7acaa
[GitHub/WoltLab/woltlab.github.io.git] /
1 <?php
2
3 namespace wcf\system\cache\runtime;
4
5 use wcf\data\person\Person;
6 use wcf\data\person\PersonList;
7
8 /**
9 * Runtime cache implementation for people.
10 *
11 * @author Matthias Schmidt
12 * @copyright 2001-2021 WoltLab GmbH
13 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
14 * @package WoltLabSuite\Core\System\Cache\Runtime
15 *
16 * @method Person[] getCachedObjects()
17 * @method Person getObject($objectID)
18 * @method Person[] getObjects(array $objectIDs)
19 */
20 class PersonRuntimeCache extends AbstractRuntimeCache
21 {
22 /**
23 * @inheritDoc
24 */
25 protected $listClassName = PersonList::class;
26 }