Files
piratepoet/mailpoet/lib/Automation/Engine/Workflows/Step.php
2022-08-08 13:23:57 +02:00

10 lines
176 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Workflows;
interface Step {
public function getKey(): string;
public function getName(): string;
}