1 | <?php |
||
21 | class EnumDefinition extends ScalarDefinition implements EnumDefinitionInterface |
||
22 | { |
||
23 | use HasEnumValues; |
||
24 | |||
25 | /** |
||
26 | * @return TypeInterface |
||
27 | */ |
||
28 | 1 | public static function getType(): TypeInterface |
|
32 | |||
33 | |||
34 | /** |
||
35 | * @return bool |
||
36 | */ |
||
37 | public function isRenderable(): bool |
||
41 | |||
42 | /** |
||
43 | * @return bool |
||
44 | */ |
||
45 | public function isInputable(): bool |
||
49 | } |
||
50 |