Skip to content

Commit a7c6f07

Browse files
committed
Correct multi-line indenting
Corrected multi-line indents based on the report by the PHP static tests. See build reports for PR #12962
1 parent af6366d commit a7c6f07

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributeOptionProviderTest.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -219,18 +219,18 @@ public function testGetAttributeOptionsWithBackendModel(array $options)
219219
$this->attributeResource->expects($this->exactly(7))
220220
->method('getTable')
221221
->will(
222-
$this->returnValueMap(
223-
[
224-
['catalog_product_super_attribute', 'catalog_product_super_attribute value'],
225-
['catalog_product_entity', 'catalog_product_entity value'],
226-
['catalog_product_super_link', 'catalog_product_super_link value'],
227-
['eav_attribute', 'eav_attribute value'],
228-
['catalog_product_entity', 'catalog_product_entity value'],
229-
['catalog_product_super_attribute_label', 'catalog_product_super_attribute_label value'],
230-
['eav_attribute_option', 'eav_attribute_option value']
231-
]
232-
)
233-
);
222+
$this->returnValueMap(
223+
[
224+
['catalog_product_super_attribute', 'catalog_product_super_attribute value'],
225+
['catalog_product_entity', 'catalog_product_entity value'],
226+
['catalog_product_super_link', 'catalog_product_super_link value'],
227+
['eav_attribute', 'eav_attribute value'],
228+
['catalog_product_entity', 'catalog_product_entity value'],
229+
['catalog_product_super_attribute_label', 'catalog_product_super_attribute_label value'],
230+
['eav_attribute_option', 'eav_attribute_option value']
231+
]
232+
)
233+
);
234234

235235
$source = $this->getMockBuilder(AbstractSource::class)
236236
->disableOriginalConstructor()

0 commit comments

Comments
 (0)