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