for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HansOtt\GraphQL\Schema;
final class ValueVariable extends NodeBase implements Value
{
public $name;
/**
* @param string $name
* @param Location|null $location
*/
public function __construct($name, Location $location = null)
parent::__construct($location);
$this->name = (string) $name;
}