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

13 lines
181 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL\Language\AST;
class FloatValue extends Node implements Value
{
2016-11-10 17:25:54 +00:00
public $kind = NodeType::FLOAT;
2015-07-15 23:05:46 +06:00
/**
* @var string
*/
public $value;
2016-11-10 17:25:54 +00:00
}