for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Paweł Dziok <[email protected]>
*/
namespace Youshido\GraphQL\Parser\Ast;
class Reference
{
/** @var string */
private $name;
public function __construct($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;
* @param string $name
public function setName($name)