Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class TypeNameEnum |
||
6 | { |
||
7 | |||
8 | public const INT = 'Int'; |
||
9 | public const FLOAT = 'Float'; |
||
10 | public const STRING = 'String'; |
||
11 | public const BOOLEAN = 'Boolean'; |
||
12 | public const ID = 'ID'; |
||
13 | public const INTERFACE = 'Interface'; |
||
14 | public const ENUM = 'Enum'; |
||
15 | public const UNION = 'Union'; |
||
16 | public const LIST = 'List'; |
||
17 | public const NULL = 'Null'; |
||
18 | |||
19 | /** |
||
20 | * @return array |
||
21 | * @throws \ReflectionException |
||
22 | */ |
||
23 | public static function values(): array |
||
28 |