LicenseOptionKeys.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\License\ValueObjects; |
| 4 | |
| 5 | /** |
| 6 | * @since 4.3.0 |
| 7 | */ |
| 8 | class LicenseOptionKeys { |
| 9 | public const LICENSES = 'give_licenses'; |
| 10 | public const PLATFORM_FEE_PERCENTAGE = 'give_licenses_platform_fee_percentage'; |
| 11 | public const LAST_REFRESHED_DATE = 'give_licenses_refreshed_last_checked'; |
| 12 | } |
| 13 |