Fix typo in method documentation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / group / UserGroupList.class.php
index 3e64e23098159f1dcd187bc4b95be2de2d95a787..26315e7a97658d0480d4e0638b7281d399a00c06 100644 (file)
@@ -1,23 +1,27 @@
 <?php
+
 namespace wcf\data\user\group;
+
 use wcf\data\DatabaseObjectList;
 
 /**
  * Represents a list of user groups.
- * 
- * @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
  *
- * @method     UserGroup               current()
- * @method     UserGroup[]             getObjects()
- * @method     UserGroup|null          search($objectID)
- * @property   UserGroup[]             $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
+ *
+ * @method  UserGroup       current()
+ * @method  UserGroup[]     getObjects()
+ * @method  UserGroup|null      getSingleObject()
+ * @method  UserGroup|null      search($objectID)
+ * @property    UserGroup[] $objects
  */
-class UserGroupList extends DatabaseObjectList {
-       /**
-        * @inheritDoc
-        */
-       public $className = UserGroup::class;
+class UserGroupList extends DatabaseObjectList
+{
+    /**
+     * @inheritDoc
+     */
+    public $className = UserGroup::class;
 }