Short.php 724 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\AsynchronousOperations\Model\BulkStatus;
  8. use Magento\AsynchronousOperations\Api\Data\BulkOperationsStatusInterface;
  9. use Magento\AsynchronousOperations\Model\BulkSummary;
  10. class Short extends BulkSummary implements BulkOperationsStatusInterface
  11. {
  12. /**
  13. * @inheritDoc
  14. */
  15. public function getOperationsList()
  16. {
  17. return $this->getData(self::OPERATIONS_LIST);
  18. }
  19. /**
  20. * @inheritDoc
  21. */
  22. public function setOperationsList($operationStatusList)
  23. {
  24. return $this->setData(self::OPERATIONS_LIST, $operationStatusList);
  25. }
  26. }