* * * * @package Workflow * @version //autogen// */ class ezcWorkflowConditionIsEqual extends ezcWorkflowConditionComparison { /** * Textual representation of the comparison operator. * * @var mixed */ protected $operator = '=='; /** * Evaluates this condition with $value and returns true if it is false or false if it is not. * * @param mixed $value * @return boolean true when the condition holds, false otherwise. * @ignore */ public function evaluate( $value ) { return $value == $this->value; } } ?>