12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order\Invoice;
- /**
- * Interface for Invoice notifier.
- *
- * @api
- * @since 100.1.2
- */
- interface NotifierInterface
- {
- /**
- * Notifies customer.
- *
- * @param \Magento\Sales\Api\Data\OrderInterface $order
- * @param \Magento\Sales\Api\Data\InvoiceInterface $invoice
- * @param \Magento\Sales\Api\Data\InvoiceCommentCreationInterface|null $comment
- * @param bool $forceSyncMode
- *
- * @return void
- * @since 100.1.2
- */
- public function notify(
- \Magento\Sales\Api\Data\OrderInterface $order,
- \Magento\Sales\Api\Data\InvoiceInterface $invoice,
- \Magento\Sales\Api\Data\InvoiceCommentCreationInterface $comment = null,
- $forceSyncMode = false
- );
- }
|