diff --git a/files/lib/data/command/CommandList.class.php b/files/lib/data/command/CommandList.class.php index b4bc82d..18a8620 100644 --- a/files/lib/data/command/CommandList.class.php +++ b/files/lib/data/command/CommandList.class.php @@ -19,6 +19,12 @@ use wcf\data\DatabaseObjectList; /** * Represents a list of chat commands. + * + * @method Command current() + * @method Command[] getObjects() + * @method Command|null getSingleObject() + * @method Command|null search($objectID) + * @property Command[] $objects */ class CommandList extends DatabaseObjectList { diff --git a/files/lib/data/command/CommandTriggerList.class.php b/files/lib/data/command/CommandTriggerList.class.php index 54ad845..7c7f6a7 100644 --- a/files/lib/data/command/CommandTriggerList.class.php +++ b/files/lib/data/command/CommandTriggerList.class.php @@ -19,6 +19,12 @@ use wcf\data\DatabaseObjectList; /** * Represents a list command triggers. + * + * @method CommandTrigger current() + * @method CommandTrigger[] getObjects() + * @method CommandTrigger|null getSingleObject() + * @method CommandTrigger|null search($objectID) + * @property CommandTrigger[] $objects */ class CommandTriggerList extends DatabaseObjectList { diff --git a/files/lib/data/message/MessageList.class.php b/files/lib/data/message/MessageList.class.php index 3c352c7..f44f38e 100644 --- a/files/lib/data/message/MessageList.class.php +++ b/files/lib/data/message/MessageList.class.php @@ -19,6 +19,12 @@ use wcf\data\DatabaseObjectList; /** * Represents a list of chat messages. + * + * @method Message current() + * @method Message[] getObjects() + * @method Message|null getSingleObject() + * @method Message|null search($objectID) + * @property Message[] $objects */ class MessageList extends DatabaseObjectList { diff --git a/files/lib/data/room/RoomList.class.php b/files/lib/data/room/RoomList.class.php index 4fb6251..41059a8 100644 --- a/files/lib/data/room/RoomList.class.php +++ b/files/lib/data/room/RoomList.class.php @@ -19,6 +19,12 @@ use wcf\data\DatabaseObjectList; /** * Represents a list of chat rooms. + * + * @method Room current() + * @method Room[] getObjects() + * @method Room|null getSingleObject() + * @method Room|null search($objectID) + * @property Room[] $objects */ class RoomList extends DatabaseObjectList { diff --git a/files/lib/data/suspension/SuspensionList.class.php b/files/lib/data/suspension/SuspensionList.class.php index 3098664..0d9786e 100644 --- a/files/lib/data/suspension/SuspensionList.class.php +++ b/files/lib/data/suspension/SuspensionList.class.php @@ -19,6 +19,12 @@ use wcf\data\DatabaseObjectList; /** * Represents a list of chat suspensions. + * + * @method Suspension current() + * @method Suspension[] getObjects() + * @method Suspension|null getSingleObject() + * @method Suspension|null search($objectID) + * @property Suspension[] $objects */ class SuspensionList extends DatabaseObjectList {