Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-asynchronous-operations/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-asynchronous-operations/Model/OperationList.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\AsynchronousOperations\Model;

/**
 * List of bulk operations.
 */
class OperationList implements \Magento\AsynchronousOperations\Api\Data\OperationListInterface
{
    /**
     * @var array
     */
    private $items;

    /**
     * @param array $items [optional]
     */
    public function __construct(array $items = [])
    {
        $this->items = $items;
    }

    /**
     * @inheritdoc
     */
    public function getItems()
    {
        return $this->items;
    }
}