Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/Action.php
Jan Jakes 97ad4cffb5 Add interface for workflow actions
[MAILPOET-4136]
2022-03-14 09:36:21 +01:00

12 lines
266 B
PHP

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