Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/Step.php
2022-03-14 09:36:21 +01:00

9 lines
178 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Workflows;
class Step {
public const TYPE_TRIGGER = 'trigger';
public const TYPE_ACTION = 'action';
}