14 lines
271 B
PHP
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;
|
|
}
|