for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Date: 16.11.16
*
* @author Portey Vasil <[email protected]>
*/
namespace Youshido\GraphQL\Parser\Ast;
use Youshido\GraphQL\Parser\Ast\Interfaces\LocatableInterface;
use Youshido\GraphQL\Parser\Location;
abstract class AbstractAst implements LocatableInterface
{
/** @var Location */
private $location;
public function __construct(Location $location)
$this->location = $location;
}
public function getLocation()
return $this->location;
public function setLocation(Location $location)