| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/Order/Invoice/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/Order/Invoice/SenderInterface.php |
<?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.
* @api
*/
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
);
}