Passed
Pull Request — master (#233)
by Christoffer
03:30
created

ScalarTypeDefinitionNode::toArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 0
1
<?php
2
3
namespace Digia\GraphQL\Language\Node;
4
5
use Digia\GraphQL\Language\Location;
6
7
class ScalarTypeDefinitionNode extends AbstractNode implements TypeDefinitionNodeInterface, DirectivesAwareInterface,
8
    NameAwareInterface
9
{
10
    use DescriptionTrait;
11
    use NameTrait;
12
    use DirectivesTrait;
13
14
    /**
15
     * ScalarTypeDefinitionNode constructor.
16
     *
17
     * @param StringValueNode|null $description
18
     * @param NameNode             $name
19
     * @param DirectiveNode[]      $directives
20
     * @param Location|null        $location
21
     */
22
    public function __construct(?StringValueNode $description, NameNode $name, array $directives, ?Location $location)
23
    {
24
        parent::__construct(NodeKindEnum::SCALAR_TYPE_DEFINITION, $location);
25
26
        $this->directives  = $directives;
27
        $this->description = $description;
28
        $this->name        = $name;
29
    }
30
31
    /**
32
     * @inheritdoc
33
     */
34
    public function toAST(): array
35
    {
36
        return [
37
            'kind'        => $this->kind,
38
            'description' => $this->getDescriptionAST(),
39
            'name'        => $this->getNameAST(),
40
            'directives'  => $this->getDirectivesAST(),
41
            'loc'         => $this->getLocationAST(),
42
        ];
43
    }
44
}
45