for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Date: 23.11.15
*
* @author Portey Vasil <[email protected]>
*/
namespace Youshido\GraphQL\Parser\Ast;
class FragmentReference
{
/** @var string */
protected $name;
* FragmentReference constructor.
* @param $name
public function __construct($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;
* @param string $name
public function setName($name)