Files
GermanAirlinesVA-GraphQL/vendor/webonyx/graphql-php/src/Language/AST/ObjectValueNode.php
T
2021-07-26 01:35:16 +02:00

15 lines
249 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Language\AST;
class ObjectValueNode extends Node implements ValueNode
{
/** @var string */
public $kind = NodeKind::OBJECT;
/** @var NodeList<ObjectFieldNode> */
public $fields;
}