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

13 lines
181 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class NameNode extends Node implements TypeNode
2015-07-15 23:05:46 +06:00
{
public $kind = NodeKind::NAME;
2015-07-15 23:05:46 +06:00
/**
* @var string
*/
public $value;
}