SettingsProductEnum.php 394 B

123456789101112131415161718
  1. <?php
  2. namespace App\Enum\Organization;
  3. use MyCLabs\Enum\Enum;
  4. /**
  5. * Type de produit disponible pour une organisation
  6. */
  7. class SettingsProductEnum extends Enum
  8. {
  9. const ARTIST = 'artist';
  10. const ARTIST_PREMIUM = 'artist-premium';
  11. const SCHOOL = 'school';
  12. const SCHOOL_PREMIUM = 'school-premium';
  13. const MANAGER = 'manager';
  14. const MANAGER_PREMIUM = 'manager-premium';
  15. }