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