123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order;
- use Magento\Sales\Api\Data\InvoiceInterface;
- use Magento\Sales\Api\Data\OrderInterface;
- /**
- * Interface OrderStatisticInterface
- *
- * @api
- * @since 100.1.2
- */
- interface InvoiceStatisticInterface
- {
- /**
- * @param OrderInterface $order
- * @param InvoiceInterface $invoice
- * @return OrderInterface
- * @since 100.1.2
- */
- public function register(OrderInterface $order, InvoiceInterface $invoice);
- }
|