Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-sales/Model/Order/Invoice/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/magento/module-sales/Model/Order/Invoice/Notifier.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Sales\Model\Order\Invoice;

/**
 * Invoice notifier.
 *
 * @api
 * @since 100.1.2
 */
class Notifier implements \Magento\Sales\Model\Order\Invoice\NotifierInterface
{
    /**
     * @var \Magento\Sales\Model\Order\Invoice\SenderInterface[]
     */
    private $senders;

    /**
     * @param \Magento\Sales\Model\Order\Invoice\SenderInterface[] $senders
     */
    public function __construct(array $senders = [])
    {
        $this->senders = $senders;
    }

    /**
     * {@inheritdoc}
     * @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
    ) {
        foreach ($this->senders as $sender) {
            $sender->send($order, $invoice, $comment, $forceSyncMode);
        }
    }
}