Files
piratepoet/mailpoet/lib/Automation/Engine/Integration/Step.php
2022-10-13 11:58:11 +02:00

17 lines
343 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Integration;
use MailPoet\Validator\Schema\ObjectSchema;
interface Step {
public function getKey(): string;
public function getName(): string;
public function getArgsSchema(): ObjectSchema;
/** @return string[] */
public function getSubjectKeys(): array;
}