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

17 lines
341 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;
/** @return string[] */
public function getSubjectKeys(): array;
}