Rename namespace with defs for 3rd-party integrations to "Integration"
[MAILPOET-4659]
This commit is contained in:
16
mailpoet/lib/Automation/Engine/Integration/Step.php
Normal file
16
mailpoet/lib/Automation/Engine/Integration/Step.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
}
|
Reference in New Issue
Block a user