Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / database / table / column / SmallintDatabaseTableColumn.class.php
index 45c31cd9e2a47eae7b345547f081735f87741dd3..527bd940e7df5204c7cc1ebaae39f0dcb3abba8a 100644 (file)
@@ -1,25 +1,28 @@
 <?php
+
 namespace wcf\system\database\table\column;
 
 /**
  * Represents a `smallint` database table column.
- * 
- * @author     Matthias Schmidt
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\System\Database\Table\Column
- * @since      5.2
+ *
+ * @author  Matthias Schmidt
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\System\Database\Table\Column
+ * @since   5.2
  */
-class SmallintDatabaseTableColumn extends AbstractIntDatabaseTableColumn {
-       /**
-        * @inheritDoc
-        */
-       protected $type = 'smallint';
-       
-       /**
-        * @inheritDoc
-        */
-       public function getMaximumLength() {
-               return 6;
-       }
+class SmallintDatabaseTableColumn extends AbstractIntDatabaseTableColumn
+{
+    /**
+     * @inheritDoc
+     */
+    protected $type = 'smallint';
+
+    /**
+     * @inheritDoc
+     */
+    public function getMaximumLength()
+    {
+        return 6;
+    }
 }