mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-03-23 08:13:50 +03:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
namespace GraphQL\Language\AST;
|
|
|
|
class IntValue extends Node implements Value
|
|
{
|
|
public $kind = NodeType::INT;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $value;
|
|
}
|