| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct( |
||
| 27 | ?NameNode $alias, |
||
| 28 | NameNode $name, |
||
| 29 | array $arguments, |
||
| 30 | array $directives, |
||
| 31 | ?SelectionSetNode $selectionSet, |
||
| 32 | ?Location $location |
||
| 33 | ) { |
||
| 34 | parent::__construct(NodeKindEnum::FIELD, $location); |
||
| 35 | |||
| 36 | $this->alias = $alias; |
||
| 37 | $this->name = $name; |
||
| 38 | $this->arguments = $arguments; |
||
| 39 | $this->directives = $directives; |
||
| 40 | $this->selectionSet = $selectionSet; |
||
| 41 | } |
||
| 59 |