| 1 | <?php |
||
| 5 | final class Field extends NodeBase |
||
| 6 | { |
||
| 7 | public $name; |
||
| 8 | public $type; |
||
| 9 | public $arguments; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $name |
||
| 13 | * @param Type $type |
||
| 14 | * @param Argument[] $arguments |
||
| 15 | * @param Location|null $location |
||
| 16 | */ |
||
| 17 | 9 | public function __construct($name, Type $type, array $arguments = array(), Location $location = null) |
|
| 24 | |||
| 25 | public function getChildren() |
||
| 32 | } |
||
| 33 |