Fix typo in method documentation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / tag / TagList.class.php
index b99f4ccd7771b254f9334da2ffc6aa819b0eb671..bce4026cabd5cd90a74c1128ffb46d643f1c92be 100644 (file)
@@ -1,23 +1,27 @@
 <?php
+
 namespace wcf\data\tag;
+
 use wcf\data\DatabaseObjectList;
 
 /**
  * Represents a list of tags.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data\Tag
  *
- * @method     Tag             current()
- * @method     Tag[]           getObjects()
- * @method     Tag|null        search($objectID)
- * @property   Tag[]           $objects
+ * @author  Alexander Ebert
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data\Tag
+ *
+ * @method  Tag     current()
+ * @method  Tag[]       getObjects()
+ * @method  Tag|null    getSingleObject()
+ * @method  Tag|null    search($objectID)
+ * @property    Tag[] $objects
  */
-class TagList extends DatabaseObjectList {
-       /**
-        * @inheritDoc
-        */
-       public $className = Tag::class;
+class TagList extends DatabaseObjectList
+{
+    /**
+     * @inheritDoc
+     */
+    public $className = Tag::class;
 }