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

14 lines
194 B
PHP
Raw Normal View History

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