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