mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-21 07:23:48 +03:00
16 lines
220 B
PHP
16 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class NameNode extends Node implements TypeNode
|
|
{
|
|
/** @var string */
|
|
public $kind = NodeKind::NAME;
|
|
|
|
/** @var string */
|
|
public $value;
|
|
|
|
}
|