PHP Class ezcWorkflowVisitorVerification, Workflow

This visitor should not be used directly but will be used by the verify() method on the workflow. verify(); ?> The verifier checks that: - there is only one start node - there is only one finally node - each node satisfies the constraints of the respective node type
Inheritance: extends ezcWorkflowVisitor
Show file Open project: zetacomponents/workflow

Protected Properties

Property Type Description
$numFinallyNodes integer Holds the number of finally nodes encountered during visiting.
$numStartNodes integer Holds the number of start nodes encountered during visiting.

Protected Methods

Method Description
doVisit ( ezcWorkflowVisitable $visitable ) Perform the visit.

Method Details

doVisit() protected method

Perform the visit.
protected doVisit ( ezcWorkflowVisitable $visitable )
$visitable ezcWorkflowVisitable

Property Details

$numFinallyNodes protected property

Holds the number of finally nodes encountered during visiting.
protected int $numFinallyNodes
return integer

$numStartNodes protected property

Holds the number of start nodes encountered during visiting.
protected int $numStartNodes
return integer