graphql-php/src/Language/AST/StringValue.php
2016-11-16 18:02:58 +07:00

13 lines
183 B
PHP

<?php
namespace GraphQL\Language\AST;
class StringValue extends Node implements Value
{
public $kind = NodeType::STRING;
/**
* @var string
*/
public $value;
}