Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / option / UserOptionList.class.php
index 59f0f9d3dd21419e6f1b9258908611bff2af280a..349c69f69ead98638cdc2d5cbcd24b2341d83373 100644 (file)
@@ -1,23 +1,26 @@
 <?php
+
 namespace wcf\data\user\option;
+
 use wcf\data\DatabaseObjectList;
 
 /**
  * Represents a list of user options.
- * 
- * @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\Option
  *
- * @method     UserOption              current()
- * @method     UserOption[]            getObjects()
- * @method     UserOption|null         search($objectID)
- * @property   UserOption[]            $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\Option
+ *
+ * @method  UserOption      current()
+ * @method  UserOption[]        getObjects()
+ * @method  UserOption|null     search($objectID)
+ * @property    UserOption[] $objects
  */
-class UserOptionList extends DatabaseObjectList {
-       /**
-        * @inheritDoc
-        */
-       public $className = UserOption::class;
+class UserOptionList extends DatabaseObjectList
+{
+    /**
+     * @inheritDoc
+     */
+    public $className = UserOption::class;
 }