Passed
Push — master ( c47e08...96e565 )
by Quang
02:51
created

NamedTypeNodeBuilder::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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