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

13 lines
181 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
{
public $kind = Node::BOOLEAN;
/**
* @var string
*/
public $value;
}