NetworkEnum.php 346 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Enum\Network;
  4. use MyCLabs\Enum\Enum;
  5. /**
  6. * Liste des réseaux disponibles
  7. */
  8. class NetworkEnum extends Enum
  9. {
  10. private const CMF = 3;
  11. private const FFEC = 4;
  12. private const YAV = 5;
  13. private const OUTOFNET = 6;
  14. private const CFBF = 7;
  15. private const DEUXIOS = 8;
  16. }