uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
cms
/
src
/
enums
/
.
/
LicenseKeyStatus.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\enums; /** * The LicenseKeyStatus class is an abstract class that defines all of the license key status states that are available * in Craft. * This class is a poor man's version of an enum, since PHP does not have support for native enumerations. * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.0.0 */ abstract class LicenseKeyStatus { public const Valid = 'valid'; /** * @since 3.6.0 */ public const Trial = 'trial'; public const Invalid = 'invalid'; public const Mismatched = 'mismatched'; public const Astray = 'astray'; public const Unknown = 'unknown'; }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/cms/src/enums/./LicenseKeyStatus.php