Add `@method` comment for `DatabaseObjectList::getSingleObject()` in subclasses
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / search / keyword / SearchKeywordList.class.php
CommitLineData
749cca08 1<?php
a9229942 2
749cca08 3namespace wcf\data\search\keyword;
a9229942 4
749cca08
MW
5use wcf\data\DatabaseObjectList;
6
7/**
8 * Represents a list of keywords.
e82bf444 9 *
a9229942
TD
10 * @author Marcel Werk
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data\Search\Keyword
14 *
15 * @method SearchKeyword current()
16 * @method SearchKeyword[] getObjects()
62d64fe4
MS
17 * @method SearchKeyword|null getSingleObject()
18 * @method SearchKeyword|null seach($objectID)
a9229942 19 * @property SearchKeyword[] $objects
749cca08 20 */
a9229942
TD
21class SearchKeywordList extends DatabaseObjectList
22{
23 /**
24 * @inheritDoc
25 */
26 public $className = SearchKeyword::class;
749cca08 27}