12345678910111213141516171819 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ConfigurableProduct\Pricing\Price;
- class RegularPriceResolver implements PriceResolverInterface
- {
- /**
- * @param \Magento\Framework\Pricing\SaleableInterface $product
- * @return float
- */
- public function resolvePrice(\Magento\Framework\Pricing\SaleableInterface $product)
- {
- return $product->getPrice();
- }
- }
|