graphql-php/src/Language/AST/ObjectValueNode.php

13 lines
203 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class ObjectValueNode extends Node implements ValueNode
2015-07-15 23:05:46 +06:00
{
public $kind = NodeKind::OBJECT;
2015-07-15 23:05:46 +06:00
/**
* @var ObjectFieldNode[]
2015-07-15 23:05:46 +06:00
*/
public $fields;
}