Rename namespace with defs for 3rd-party integrations to "Integration"

[MAILPOET-4659]
This commit is contained in:
Jan Jakes
2022-09-23 15:23:00 +02:00
committed by Jan Jakeš
parent 3773bc4985
commit a2948efc46
23 changed files with 35 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Integration;
use MailPoet\Automation\Engine\Data\StepRunArgs;
interface Trigger extends Step {
public function registerHooks(): void;
public function isTriggeredBy(StepRunArgs $args): bool;
}