An integration is a set of triggers, actions, subjects, etc. (E.g. "MailPoet integration".) [MAILPOET-4136]
8 lines
153 B
PHP
8 lines
153 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Engine;
|
|
|
|
interface Integration {
|
|
public function register(Registry $registry): void;
|
|
}
|