mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-03 12:43:31 +03:00
12 lines
169 B
PHP
12 lines
169 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class Name extends Node implements Type
|
|
{
|
|
public $kind = Node::NAME;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $value;
|
|
}
|