Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/StepRunner.php
alex-mailpoet a1ddef0c99 Add ability to inject step runners
[PREMIUM-180]
2022-06-15 15:32:51 +02:00

8 lines
195 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Workflows;
interface StepRunner {
public function run(Step $step, Workflow $workflow, WorkflowRun $workflowRun): void;
}