mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
8 lines
130 B
PHP
8 lines
130 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum CycleType: string{
|
|
case Monthly = 'monthly';
|
|
case Unlimited = 'unlimited';
|
|
case Yearly = 'yearly';
|
|
}
|