File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
app/code/Magento/ConfigurableProduct Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ class FinalPriceBox extends \Magento\Catalog\Pricing\Render\FinalPriceBox
30
30
* @param SaleableInterface $saleableItem
31
31
* @param PriceInterface $price
32
32
* @param RendererPool $rendererPool
33
- * @param ConfigurableOptionsProviderInterface $configurableOptionsProvider
34
- * @param array $data
35
33
* @param SalableResolverInterface $salableResolver
36
34
* @param MinimalPriceCalculatorInterface $minimalPriceCalculator
35
+ * @param ConfigurableOptionsProviderInterface $configurableOptionsProvider
36
+ * @param array $data
37
37
*/
38
38
public function __construct (
39
39
Context $ context ,
Original file line number Diff line number Diff line change @@ -110,10 +110,12 @@ public function testHasSpecialPrice(
110
110
$ priceInfoMock = $ this ->createMock (PriceInfoInterface::class);
111
111
$ priceInfoMock ->expects ($ this ->exactly (2 ))
112
112
->method ('getPrice ' )
113
- ->willReturnMap ([
114
- [RegularPrice::PRICE_CODE , $ priceMockOne ],
115
- [FinalPrice::PRICE_CODE , $ priceMockTwo ],
116
- ]);
113
+ ->willReturnMap (
114
+ [
115
+ [RegularPrice::PRICE_CODE , $ priceMockOne ],
116
+ [FinalPrice::PRICE_CODE , $ priceMockTwo ],
117
+ ]
118
+ );
117
119
118
120
$ productMock = $ this ->createMock (Product::class);
119
121
$ productMock ->expects ($ this ->exactly (2 ))
You can’t perform that action at this time.
0 commit comments