Files
piratepoet/mailpoet/lib/Automation/Engine/Control/RootStep.php
Jan Jakes 9028ea96ec Implement root step
[MAILPOET-4523]
2022-09-12 14:40:36 -05:00

21 lines
442 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Control;
use MailPoet\Automation\Engine\Workflows\Step;
use MailPoet\Validator\Schema\ObjectSchema;
class RootStep implements Step {
public function getKey(): string {
return 'core:root';
}
public function getName(): string {
return __('Root step', 'mailpoet');
}
public function getArgsSchema(): ObjectSchema {
return new ObjectSchema();
}
}