12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\InventoryDistanceBasedSourceSelectionApi\Api;
- /**
- * Get distance between two LatLngRequest points
- *
- * @api
- */
- interface GetDistanceInterface
- {
- /**
- * Get distance between two points
- *
- * @param \Magento\InventoryDistanceBasedSourceSelectionApi\Api\Data\LatLngInterface $source
- * @param \Magento\InventoryDistanceBasedSourceSelectionApi\Api\Data\LatLngInterface $destination
- * @return float
- */
- public function execute(
- \Magento\InventoryDistanceBasedSourceSelectionApi\Api\Data\LatLngInterface $source,
- \Magento\InventoryDistanceBasedSourceSelectionApi\Api\Data\LatLngInterface $destination
- ): float;
- }
|