for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Execution;
class Path
{
private $previous;
private $key;
/**
* Path constructor.
* @param $previous
* @param $key
*/
public function __construct($previous, $key)
$this->previous = $previous;
$this->key = $key;
}
* @return mixed
public function getPrevious()
return $this->previous;
* @param mixed $previous
* @return Path
public function setPrevious($previous)
return $this;
public function getKey()
return $this->key;
* @param mixed $key
public function setKey($key)