Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / article / content / ArticleContentList.class.php
1 <?php
2 namespace wcf\data\article\content;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of article content.
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\Article\Content
12 * @since 3.0
13 *
14 * @method ArticleContent current()
15 * @method ArticleContent[] getObjects()
16 * @method ArticleContent|null search($objectID)
17 * @property ArticleContent[] $objects
18 */
19 class ArticleContentList extends DatabaseObjectList {
20 /**
21 * @inheritDoc
22 */
23 public $className = ArticleContent::class;
24 }