| Current Path : /home/rtorresani/www/vendor/webonyx/graphql-php/src/Language/AST/ |
| Current File : //home/rtorresani/www/vendor/webonyx/graphql-php/src/Language/AST/EnumTypeExtensionNode.php |
<?php declare(strict_types=1);
namespace GraphQL\Language\AST;
class EnumTypeExtensionNode extends Node implements TypeExtensionNode
{
public string $kind = NodeKind::ENUM_TYPE_EXTENSION;
public NameNode $name;
/** @var NodeList<DirectiveNode> */
public NodeList $directives;
/** @var NodeList<EnumValueDefinitionNode> */
public NodeList $values;
public function __construct(array $vars)
{
parent::__construct($vars);
$this->directives ??= new NodeList([]);
}
public function getName(): NameNode
{
return $this->name;
}
}