123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Bundle\Pricing\Price;
- /**
- * Configured regular price model.
- */
- class ConfiguredRegularPrice extends ConfiguredPrice
- {
- /**
- * Price type configured.
- */
- const PRICE_CODE = 'configured_regular_price';
- /**
- * Create Selection Price List.
- *
- * @param \Magento\Bundle\Model\Option $option
- * @return BundleSelectionPrice[]
- */
- protected function createSelectionPriceList(\Magento\Bundle\Model\Option $option): array
- {
- return $this->calculator->createSelectionPriceList($option, $this->product, true);
- }
- }
|