| 12345678910111213141516171819 |
- <?php
- declare(strict_types=1);
- namespace App\Enum\Network;
- use MyCLabs\Enum\Enum;
- /**
- * Liste des réseaux disponibles
- */
- class NetworkEnum extends Enum
- {
- private const CMF = 3;
- private const FFEC = 4;
- private const YAV = 5;
- private const OUTOFNET = 6;
- private const CFBF = 7;
- private const DEUXIOS = 8;
- }
|