Make LicensePage::$licenseNumber a string
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 21 Sep 2023 10:23:06 +0000 (12:23 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 21 Sep 2023 10:23:06 +0000 (12:23 +0200)
While the licenseNumber is numeric, it is not used as an integer: No
mathematical operations are to be performed on it. Change the type to a string
to make the purpose clear.

wcfsetup/install/files/lib/acp/page/LicensePage.class.php

index f8da6d9adf037dcaaf7798ffc75113d1fb084e90..b3eb889760c4cb16dd1be032ad5656a96ac42740 100644 (file)
@@ -33,7 +33,7 @@ final class LicensePage extends AbstractPage
 
     private array $licenseData;
 
-    private int $licenseNumber;
+    private string $licenseNumber;
 
     private array $installedPackages;