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
Mostra file
Open project: zetacomponents/workflow
Protected Properties
Protected Methods
Method |
Description |
|
doVisit ( ezcWorkflowVisitable $visitable ) |
Perform the visit. |
|
Method Details
doVisit()
protected method
protected doVisit ( ezcWorkflowVisitable $visitable ) |
$visitable |
ezcWorkflowVisitable |
|
Property Details
$numFinallyNodes protected_oe property
Holds the number of finally nodes encountered during visiting.
protected int $numFinallyNodes |
return |
integer |
|
$numStartNodes protected_oe property
Holds the number of start nodes encountered during visiting.
protected int $numStartNodes |
return |
integer |
|