Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/Trigger.php
Jan Jakes ee6cdeceab Add interface for workflow triggers
[MAILPOET-4136]
2022-03-14 09:36:21 +01:00

12 lines
221 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Workflows;
interface Trigger {
public function getKey(): string;
public function getName(): string;
public function registerHooks(): void;
}