Lite
3 months ago
ApplicationService.php
1 month ago
DataModifier.php
1 month ago
DomainService.php
1 month ago
EventListener.php
1 month ago
InfrastructureService.php
1 month ago
Licence.php
2 weeks ago
LicenceConstants.php
6 months ago
LicenceConstants.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Infrastructure\Licence; |
| 4 | |
| 5 | /** |
| 6 | * Class LicenceConstants |
| 7 | * |
| 8 | * @package AmeliaBooking\Infrastructure\Licence |
| 9 | */ |
| 10 | class LicenceConstants |
| 11 | { |
| 12 | /** |
| 13 | * License level constants |
| 14 | */ |
| 15 | public const LITE = 'Lite'; |
| 16 | public const STARTER = 'Starter'; |
| 17 | public const BASIC = 'Basic'; |
| 18 | public const PRO = 'Pro'; |
| 19 | public const DEVELOPER = 'Developer'; |
| 20 | } |
| 21 |