| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class InputValueDefinitionASTBuilder extends AbstractASTBuilder |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @inheritdoc |
||
| 13 | */ |
||
| 14 | public function supportsBuilder(string $kind): bool |
||
| 15 | { |
||
| 16 | return $kind === ASTKindEnum::INPUT_VALUE_DEFINITION; |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @inheritdoc |
||
| 21 | */ |
||
| 22 | public function build(LexerInterface $lexer, array $params): ?array |
||
| 41 | ]; |
||
| 42 | } |
||
| 44 |