WishRegistrationEnum.php 383 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Enum\OnlineRegistration;
  3. use MyCLabs\Enum\Enum;
  4. /**
  5. * TODO: documenter
  6. *
  7. * @method static NO_INFORMATION()
  8. * @method static REREGISTER()
  9. * @method static STOP_REGISTRATION()
  10. */
  11. class WishRegistrationEnum extends Enum
  12. {
  13. const NO_INFORMATION = 'NO_INFORMATION';
  14. const REREGISTER = 'REREGISTER';
  15. const STOP_REGISTRATION = 'STOP_REGISTRATION';
  16. }