Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/Step.php
2022-08-08 13:23:57 +02:00

14 lines
271 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Workflows;
use MailPoet\Validator\Schema\ObjectSchema;
interface Step {
public function getKey(): string;
public function getName(): string;
public function getArgsSchema(): ObjectSchema;
}