Fix typo in method documentation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / group / option / category / UserGroupOptionCategoryList.class.php
index e315ffcbf04196c29fc339241aeba7ca17ca74db..0a743f8d7e44bb7b53570fc6533fb79fb2008efb 100644 (file)
@@ -1,23 +1,27 @@
 <?php
+
 namespace wcf\data\user\group\option\category;
+
 use wcf\data\DatabaseObjectList;
 
 /**
  * Represents a list of user group option categories.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2018 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data\User\Group\Option\Category
  *
- * @method     UserGroupOptionCategory         current()
- * @method     UserGroupOptionCategory[]       getObjects()
- * @method     UserGroupOptionCategory|null    search($objectID)
- * @property   UserGroupOptionCategory[]       $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\User\Group\Option\Category
+ *
+ * @method  UserGroupOptionCategory     current()
+ * @method  UserGroupOptionCategory[]   getObjects()
+ * @method  UserGroupOptionCategory|null    getSingleObject()
+ * @method  UserGroupOptionCategory|null    search($objectID)
+ * @property    UserGroupOptionCategory[] $objects
  */
-class UserGroupOptionCategoryList extends DatabaseObjectList {
-       /**
-        * @inheritDoc
-        */
-       public $className = UserGroupOptionCategory::class;
+class UserGroupOptionCategoryList extends DatabaseObjectList
+{
+    /**
+     * @inheritDoc
+     */
+    public $className = UserGroupOptionCategory::class;
 }