| Current Path : /home/jeromecohp/www/templates/yootheme/packages/graphql/lib/Language/AST/ |
| Current File : /home/jeromecohp/www/templates/yootheme/packages/graphql/lib/Language/AST/DirectiveNode.php |
<?php declare(strict_types=1);
namespace YOOtheme\GraphQL\Language\AST;
class DirectiveNode extends Node
{
public string $kind = NodeKind::DIRECTIVE;
public NameNode $name;
/** @var NodeList<ArgumentNode> */
public NodeList $arguments;
public function __construct(array $vars)
{
parent::__construct($vars);
$this->arguments ??= new NodeList([]);
}
}