Files
GermanAirlinesVA-GraphQL/vendor/webonyx/graphql-php/src/Language/AST/ObjectValueNode.php
T
Kilian Hofmann 499abe195e Vendor
2021-06-01 19:56:34 +02:00

15 lines
250 B
PHP

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