Files
piratepoet/mailpoet/lib/Automation/Engine/Control/StepRunner.php
2022-09-23 12:42:03 +03:00

10 lines
204 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Control;
use MailPoet\Automation\Engine\Data\StepRunArgs;
interface StepRunner {
public function run(StepRunArgs $args): void;
}