12 lines
221 B
PHP
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;
|
|
}
|