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

13 lines
177 B
PHP

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