Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Language/AST/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/webonyx/graphql-php/src/Language/AST/DirectiveNode.php

<?php declare(strict_types=1);

namespace 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([]);
    }
}