AutomationNode.php
3 years ago
AutomationNodeVisitor.php
3 years ago
AutomationWalker.php
2 months ago
index.php
3 years ago
AutomationNodeVisitor.php
17 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Automation\Engine\Validation\AutomationGraph; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\Automation\Engine\Data\Automation; |
| 9 | |
| 10 | interface AutomationNodeVisitor { |
| 11 | public function initialize(Automation $automation): void; |
| 12 | |
| 13 | public function visitNode(Automation $automation, AutomationNode $node): void; |
| 14 | |
| 15 | public function complete(Automation $automation): void; |
| 16 | } |
| 17 |