DeviceTypes.php 354 B

1234567891011121314151617181920
  1. <?php
  2. namespace DeviceBundle\Utils;
  3. class DeviceTypes
  4. {
  5. use ChoiceTrait;
  6. const FTTH_OLT = 'FTTHBundle\Entity\OLT';
  7. const FTTH_ONU = 'FTTHBundle\Entity\ONU';
  8. const RADIUS_NAS = 'RadiusBundle\Entity\NAS';
  9. const CABLEMODEM_CMTS = 'CablemodemBundle\Entity\CMTS';
  10. const CABLEMODEM_CM = 'CablemodemBundle\Entity\Cablemodem';
  11. }