1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order\Creditmemo;
- /**
- * Interface for notification sender for CreditMemo.
- */
- interface SenderInterface
- {
- /**
- * Sends notification to a customer.
- *
- * @param \Magento\Sales\Api\Data\OrderInterface $order
- * @param \Magento\Sales\Api\Data\CreditmemoInterface $creditmemo
- * @param \Magento\Sales\Api\Data\CreditmemoCommentCreationInterface|null $comment
- * @param bool $forceSyncMode
- *
- * @return bool
- */
- public function send(
- \Magento\Sales\Api\Data\OrderInterface $order,
- \Magento\Sales\Api\Data\CreditmemoInterface $creditmemo,
- \Magento\Sales\Api\Data\CreditmemoCommentCreationInterface $comment = null,
- $forceSyncMode = false
- );
- }
|