We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df78449 commit 414dad5Copy full SHA for 414dad5
app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/SalesRule/Model/Rule/Condition/ProductTest.php
@@ -176,14 +176,16 @@ private function createProductMock(): \PHPUnit_Framework_MockObject_MockObject
176
{
177
$productMock = $this->getMockBuilder(\Magento\Catalog\Model\Product::class)
178
->disableOriginalConstructor()
179
- ->setMethods([
180
- 'getAttribute',
181
- 'getId',
182
- 'setQuoteItemQty',
183
- 'setQuoteItemPrice',
184
- 'getTypeId',
185
- 'hasData',
186
- ])
+ ->setMethods(
+ [
+ 'getAttribute',
+ 'getId',
+ 'setQuoteItemQty',
+ 'setQuoteItemPrice',
+ 'getTypeId',
+ 'hasData',
187
+ ]
188
+ )
189
->getMock();
190
$productMock
191
->expects($this->any())
0 commit comments