Youshido\GraphQL\Parser\Ast\ArgumentValue\Variable::__construct PHP Method

__construct() public method

public __construct ( string $name, string $type, boolean $nullable, boolean $isArray, Location $location )
$name string
$type string
$nullable boolean
$isArray boolean
$location Youshido\GraphQL\Parser\Location
    public function __construct($name, $type, $nullable, $isArray, Location $location)
    {
        parent::__construct($location);
        $this->name = $name;
        $this->type = $type;
        $this->isArray = $isArray;
        $this->nullable = $nullable;
    }