Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class IdArgumentGenerator |
||
9 | { |
||
10 | /** |
||
11 | * Generates a GraphQL ID argument |
||
12 | * More information: |
||
13 | * https://lighthouse-php.netlify.com/docs/schema.html#input-types |
||
14 | * |
||
15 | * @param Type[] $typeFields |
||
16 | * @return array |
||
17 | */ |
||
18 | public static function generate(array $typeFields): array |
||
32 |