TypeFunctionEnum.php 467 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Enum\Access;
  4. use MyCLabs\Enum\Enum;
  5. /**
  6. * Type of function.
  7. */
  8. class TypeFunctionEnum extends Enum
  9. {
  10. private const ACTIVITIES_FUNCTION = 'ACTIVITIES_FUNCTION';
  11. private const ADMINISTRATIVES_FUNCTION = 'ADMINISTRATIVES_FUNCTION';
  12. private const PEDAGOGICS_FUNCTION = 'PEDAGOGICS_FUNCTION';
  13. private const ASSOCIATIVES_FUNCTION = 'ASSOCIATIVES_FUNCTION';
  14. private const OTHER_FUNCTION = 'OTHER_FUNCTION';
  15. }