evaluate() public method

Evaluates this condition.
public evaluate ( mixed $value ) : boolean
$value mixed
return boolean true when the condition holds, false otherwise.
Exemplo n.º 1
0
 /**
  * Evaluates this condition.
  *
  * @param  mixed $value
  * @return boolean true when the condition holds, false otherwise.
  * @ignore
  */
 public function evaluate($value)
 {
     if (is_array($value) && isset($value[$this->variableName])) {
         return $this->condition->evaluate($value[$this->variableName]);
     } else {
         return false;
     }
 }
Exemplo n.º 2
0
Arquivo: not.php Projeto: bmdevel/ezc
 /**
  * Evaluates this condition with the value $value and returns true if the condition holds.
  *
  * If the condition does not hold false is returned.
  *
  * @param  mixed $value
  * @return boolean true when the condition holds, false otherwise.
  * @ignore
  */
 public function evaluate($value)
 {
     return !$this->condition->evaluate($value);
 }