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

14 lines
186 B
PHP
Raw Normal View History

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