| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class TypeKindEnum |
||
| 6 | { |
||
| 7 | |||
| 8 | public const SCALAR = 'SCALAR'; |
||
| 9 | public const OBJECT = 'OBJECT'; |
||
| 10 | public const INTERFACE = 'INTERFACE'; |
||
| 11 | public const UNION = 'UNION'; |
||
| 12 | public const ENUM = 'ENUM'; |
||
| 13 | public const INPUT_OBJECT = 'INPUT_OBJECT'; |
||
| 14 | public const LIST = 'LIST'; |
||
| 15 | public const NON_NULL = 'NON_NULL'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return array |
||
| 19 | * @throws \ReflectionException |
||
| 20 | */ |
||
| 21 | public static function values(): array |
||
| 26 |