Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / stat / daily / StatDailyList.class.php
1 <?php
2 namespace wcf\data\stat\daily;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of statistic entries.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Stat\Daily
12 *
13 * @method StatDaily current()
14 * @method StatDaily[] getObjects()
15 * @method StatDaily|null search($objectID)
16 * @property StatDaily[] $objects
17 */
18 class StatDailyList extends DatabaseObjectList {
19 /**
20 * @inheritDoc
21 */
22 public $className = StatDaily::class;
23 }