12345678910111213141516171819202122232425262728293031323334 |
- <?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;
- }
- }
|