Current File : /var/www/pediatribu/wp-content/plugins/mailpoet/lib/Automation/Engine/Integration/Trigger.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;
}