LeadingCauseEnum.php 468 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Enum\Network;
  4. use MyCLabs\Enum\Enum;
  5. /**
  6. * Liste des cause de départ d'une structure dans un réseau
  7. */
  8. class LeadingCauseEnum extends Enum
  9. {
  10. private const DEPARTURE = 'DEPARTURE';
  11. private const RADIATION = 'RADIATION';
  12. private const DISSOLUTION = 'DISSOLUTION';
  13. private const FUSION = 'FUSION';
  14. private const OTHER = 'OTHER';
  15. private const SLEEP = 'SLEEP';
  16. }