Completed
Pull Request — master (#148)
by Christoffer
04:19
created

InlineFragmentNodeBuilder::supportsBuilder()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
namespace Digia\GraphQL\Language\NodeBuilder;
4
5
use Digia\GraphQL\Language\Node\InlineFragmentNode;
6
use Digia\GraphQL\Language\Node\NodeInterface;
7
use Digia\GraphQL\Language\Node\NodeKindEnum;
8
9
class InlineFragmentNodeBuilder extends AbstractNodeBuilder
10
{
11
    /**
12
     * @inheritdoc
13
     */
14
    public function build(array $ast): NodeInterface
15
    {
16
        return new InlineFragmentNode([
17
            'typeCondition' => $this->buildNode($ast, 'typeCondition'),
18
            'directives'    => $this->buildNodes($ast, 'directives'),
19
            'selectionSet'  => $this->buildNode($ast, 'selectionSet'),
20
            'location'      => $this->createLocation($ast),
21
        ]);
22
    }
23
24
    /**
25
     * @inheritdoc
26
     */
27
    public function supportsBuilder(string $kind): bool
28
    {
29
        return $kind === NodeKindEnum::INLINE_FRAGMENT;
30
    }
31
}
32