Add workflow data object and an empty step object

[MAILPOET-4136]
This commit is contained in:
Jan Jakes
2022-03-07 11:26:15 +01:00
committed by Veljko V
parent 020309e916
commit 3e6a4fd557
2 changed files with 134 additions and 0 deletions

View File

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