OverrideServiceInterface.php 455 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModule5\Service\V1;
  7. interface OverrideServiceInterface
  8. {
  9. /**
  10. * Update existing item.
  11. *
  12. * @param string $entityId
  13. * @param string $name
  14. * @param bool $orders
  15. * @return \Magento\TestModule5\Service\V1\Entity\AllSoapAndRest
  16. */
  17. public function scalarUpdate($entityId, $name, $orders);
  18. }