Add controller to return order data for free plugin

[PREMIUM-224]
This commit is contained in:
David Remer
2023-06-22 10:08:11 +03:00
committed by Aschepikov
parent ff9909eaef
commit f8075fec43
3 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php declare(strict_types = 1);
namespace MailPoet\Automation\Integrations\MailPoet\Analytics\Controller;
use MailPoet\Automation\Engine\Data\Automation;
use MailPoet\Automation\Integrations\MailPoet\Analytics\Entities\Query;
interface OrderController {
public function getOrdersForAutomation(Automation $automation, Query $query): array;
}