evaluate() публичный Метод

Evaluates this condition.
public evaluate ( mixed $value ) : boolean
$value mixed
Результат boolean true when the condition holds, false otherwise.
Пример #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;
     }
 }
Пример #2
0
 /**
  * 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);
 }