* * * * @package Workflow * @version //autogen// */ class ezcWorkflowConditionIsAnything extends ezcWorkflowConditionType { /** * Returns true. * * @param mixed $value * @return boolean true * @ignore */ public function evaluate( $value ) { return true; } /** * Returns a textual representation of this condition. * * @return string * @ignore */ public function __toString() { return 'is anything'; } } ?>