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