mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-02-22 07:13:14 +03:00
13 lines
181 B
PHP
13 lines
181 B
PHP
|
<?php
|
||
|
namespace GraphQL\Language\AST;
|
||
|
|
||
|
|
||
|
class BooleanValue extends Node implements Value
|
||
|
{
|
||
|
public $kind = Node::BOOLEAN;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $value;
|
||
|
}
|