Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class NullValueNodeBuilder extends AbstractNodeBuilder |
||
10 | { |
||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | public function build(array $ast): NodeInterface |
||
15 | { |
||
16 | return new NullValueNode([ |
||
17 | 'location' => $this->createLocation($ast), |
||
18 | ]); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | public function supportsBuilder(string $kind): bool |
||
27 | } |
||
28 | } |
||
29 |