| 12345678910111213141516171819 |
- <?php
- namespace App\Enum\OnlineRegistration;
- use MyCLabs\Enum\Enum;
- /**
- * TODO: documenter
- *
- * @method static NO_INFORMATION()
- * @method static REREGISTER()
- * @method static STOP_REGISTRATION()
- */
- class WishRegistrationEnum extends Enum
- {
- const NO_INFORMATION = 'NO_INFORMATION';
- const REREGISTER = 'REREGISTER';
- const STOP_REGISTRATION = 'STOP_REGISTRATION';
- }
|