for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Netdudes\DataSourceryBundle\UQL\AST;
/**
* Class ASTAssertion
*
* Abstract Syntax Tree node representing a combination a <assertion> on the language.
*/
class ASTAssertion
{
private $identifier;
private $operator;
private $value;
* @param $identifier
* @param $operator
* @param $value
public function __construct($identifier, $operator, $value)
$this->identifier = $identifier;
$this->operator = $operator;
$this->value = $value;
}
* @return mixed
public function getIdentifier()
return $this->identifier;
* @param mixed $identifier
public function setIdentifier($identifier)
public function getOperator()
return $this->operator;
* @param mixed $operator
public function setOperator($operator)
public function getValue()
return $this->value;
* @param mixed $value
public function setValue($value)