Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-sales/Model/Order/Shipment/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-sales/Model/Order/Shipment/Notifier.php

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

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

    /**
     * @param \Magento\Sales\Model\Order\Shipment\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\ShipmentInterface $shipment,
        \Magento\Sales\Api\Data\ShipmentCommentCreationInterface $comment = null,
        $forceSyncMode = false
    ) {
        foreach ($this->senders as $sender) {
            $sender->send($order, $shipment, $comment, $forceSyncMode);
        }
    }
}