for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HansOtt\GraphQL\Query;
abstract class NodeBase implements Node
{
public $location;
public function __construct(Location $location = null)
$this->location = $location;
}
public function getLocation()
return $this->location;