mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
8 lines
124 B
PHP
8 lines
124 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class NullValue extends Node implements Value
|
|
{
|
|
public $kind = NodeType::NULL;
|
|
}
|