9 lines
178 B
PHP
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';
|
|
}
|