1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order\Invoice;
- /**
- * Interface for notification sender for Invoice.
- */
- interface SenderInterface
- {
- /**
- * Sends notification to a 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 bool
- */
- public function send(
- \Magento\Sales\Api\Data\OrderInterface $order,
- \Magento\Sales\Api\Data\InvoiceInterface $invoice,
- \Magento\Sales\Api\Data\InvoiceCommentCreationInterface $comment = null,
- $forceSyncMode = false
- );
- }
|