pluf/workflow

View on GitHub
src/Visitor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Pluf\Workflow;

interface Visitor
{

    /**
     *
     * @param
     *            visitable the element to be visited.
     */
    public function visitOnEntry($visitable);

    /**
     *
     * @param
     *            visitable the element to be visited.
     */
    public function visitOnExit($visitable);
}