Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / object / watch / UserObjectWatchList.class.php
index 07ecfbbbfca65f1482a701d89b91056e9238f8dc..f1f9ffa08c6323bf4e4b5859ac946e1766daa76b 100644 (file)
@@ -1,23 +1,26 @@
 <?php
+
 namespace wcf\data\user\object\watch;
+
 use wcf\data\DatabaseObjectList;
 
 /**
  * Represents a list of watched objects.
- * 
- * @author     Marcel Werk
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data\User\Object\Watch
  *
- * @method     UserObjectWatch         current()
- * @method     UserObjectWatch[]       getObjects()
- * @method     UserObjectWatch|null    search($objectID)
- * @property   UserObjectWatch[]       $objects
+ * @author  Marcel Werk
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data\User\Object\Watch
+ *
+ * @method  UserObjectWatch     current()
+ * @method  UserObjectWatch[]   getObjects()
+ * @method  UserObjectWatch|null    search($objectID)
+ * @property    UserObjectWatch[] $objects
  */
-class UserObjectWatchList extends DatabaseObjectList {
-       /**
-        * @inheritDoc
-        */
-       public $className = UserObjectWatch::class;
+class UserObjectWatchList extends DatabaseObjectList
+{
+    /**
+     * @inheritDoc
+     */
+    public $className = UserObjectWatch::class;
 }