123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\InstantPurchase\Model\Ui;
- use Magento\Quote\Api\Data\ShippingMethodInterface;
- /**
- * Ship[ping method string presentation.
- *
- * @api May be used for pluginization.
- * @since 100.2.0
- */
- class ShippingMethodFormatter
- {
- /**
- * @param ShippingMethodInterface $shippingMethod
- * @return string
- * @since 100.2.0
- */
- public function format(ShippingMethodInterface $shippingMethod) : string
- {
- $data = [
- $shippingMethod->getCarrierTitle(),
- $shippingMethod->getMethodTitle(),
- ];
- $data = array_filter($data);
- $formatted = join(' - ', $data);
- return $formatted;
- }
- }
|