14 lines
303 B
PHP
14 lines
303 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Engine\Integration;
|
|
|
|
if (!defined('ABSPATH')) exit;
|
|
|
|
|
|
use MailPoet\Automation\Engine\Data\StepRunArgs;
|
|
|
|
interface Trigger extends Step {
|
|
public function registerHooks(): void;
|
|
|
|
public function isTriggeredBy(StepRunArgs $args): bool;
|
|
}
|