1 | <?php |
||
7 | class EmployeeStaffEnum extends AbstractEnumType |
||
8 | { |
||
9 | public const ART_CORE = 'art-core'; |
||
10 | public const ART_PRODUCTION = 'art-production'; |
||
11 | public const ART_DIRECTOR = 'art-director'; |
||
12 | public const ADMINISTRATIVE = 'administrative'; |
||
13 | public const CREATIVE_CORE = 'creative'; |
||
14 | public const INVITED_ACTOR = 'invited'; |
||
15 | public const EPOCH = 'epoch'; |
||
16 | |||
17 | protected static $choices = [ |
||
18 | self::ADMINISTRATIVE => 'Administrative', |
||
19 | self::ART_DIRECTOR => 'Art-director', |
||
20 | self::ART_PRODUCTION => 'Art-production', |
||
21 | self::ART_CORE => 'Art-core', |
||
22 | self::CREATIVE_CORE => 'Creative', |
||
23 | self::INVITED_ACTOR => 'Invited actor', |
||
24 | self::EPOCH => 'Epoch', |
||
25 | ]; |
||
26 | |||
27 | public static function getDefaultValue(): string |
||
31 | } |
||
32 |