1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestModule5\Service\V1;
- interface OverrideServiceInterface
- {
- /**
- * Update existing item.
- *
- * @param string $entityId
- * @param string $name
- * @param bool $orders
- * @return \Magento\TestModule5\Service\V1\Entity\AllSoapAndRest
- */
- public function scalarUpdate($entityId, $name, $orders);
- }
|