| 123456789101112131415161718 |
- <?php
- namespace App\Enum\Organization;
- use MyCLabs\Enum\Enum;
- /**
- * Type de produit disponible pour une organisation
- */
- class SettingsProductEnum extends Enum
- {
- const ARTIST = 'artist';
- const ARTIST_PREMIUM = 'artist-premium';
- const SCHOOL = 'school';
- const SCHOOL_PREMIUM = 'school-premium';
- const MANAGER = 'manager';
- const MANAGER_PREMIUM = 'manager-premium';
- }
|