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

8 lines
124 B
PHP
Raw Normal View History

2016-11-18 23:59:28 +07:00
<?php
namespace GraphQL\Language\AST;
class NullValue extends Node implements Value
{
public $kind = NodeType::NULL;
}