File "Trigger.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/lib/Automation/Engine/Integration/Trigger.php
File size: 303 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}