* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Order\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Order\Query\GetOrderForViewing; use PrestaShop\PrestaShop\Core\Domain\Order\QueryResult\OrderForViewing; interface GetOrderForViewingHandlerInterface { /** * @param GetOrderForViewing $query * * @return OrderForViewing */ public function handle(GetOrderForViewing $query): OrderForViewing; }