3 namespace wcf\system\cache\runtime;
5 use wcf\data\person\Person;
6 use wcf\data\person\PersonList;
9 * Runtime cache implementation for people.
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
16 * @method Person[] getCachedObjects()
17 * @method Person getObject($objectID)
18 * @method Person[] getObjects(array $objectIDs)
20 class PersonRuntimeCache extends AbstractRuntimeCache
25 protected $listClassName = PersonList::class;