for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Language\AST\Node;
trait ValueTrait
{
/**
* @var mixed|null
*/
protected $value;
* @return mixed|null
public function getValue()
return $this->value;
}
* @param mixed|null $value
* @return $this
public function setValue($value)
$this->value = $value;
return $this;