10 lines
275 B
PHP
10 lines
275 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Automation\Engine;
|
|
|
|
class Hooks {
|
|
public const INITIALIZE = 'mailpoet/automation/initialize';
|
|
public const TRIGGER = 'mailpoet/automation/trigger';
|
|
public const WORKFLOW_STEP = 'mailpoet/automation/workflow/step';
|
|
}
|