Move automation engine code under "Engine" namespace

This is to separate the engine itself from "integrations" that will be
built on top of the engine.

[MAILPOET-4136]
This commit is contained in:
Jan Jakes
2022-02-25 14:24:26 +01:00
committed by Veljko V
parent 4c4e5c7f60
commit da2621230d
22 changed files with 52 additions and 52 deletions

View File

@@ -0,0 +1,18 @@
<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\API;
class ErrorResponse extends Response {
public function __construct(
int $status,
string $message,
string $code
) {
parent::__construct(null, $status);
$this->set_data([
'code' => $code,
'message' => $message,
'data' => ['status' => $status],
]);
}
}