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\ArgumentValue;
class Literal implements ValueInterface
{
private $value;
public function __construct($value)
$this->value = $value;
}
public function getValue()
return $this->value;
* @param string $value
public function setValue($value)