Skip to content

Commit

Permalink
Correct multi-line indenting
Browse files Browse the repository at this point in the history
Corrected multi-line indents based on the report by the
PHP static tests.

See build reports for PR #12962
  • Loading branch information
wardcapp committed Jan 3, 2018
1 parent af6366d commit a7c6f07
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,18 +219,18 @@ public function testGetAttributeOptionsWithBackendModel(array $options)
$this->attributeResource->expects($this->exactly(7))
->method('getTable')
->will(
$this->returnValueMap(
[
['catalog_product_super_attribute', 'catalog_product_super_attribute value'],
['catalog_product_entity', 'catalog_product_entity value'],
['catalog_product_super_link', 'catalog_product_super_link value'],
['eav_attribute', 'eav_attribute value'],
['catalog_product_entity', 'catalog_product_entity value'],
['catalog_product_super_attribute_label', 'catalog_product_super_attribute_label value'],
['eav_attribute_option', 'eav_attribute_option value']
]
)
);
$this->returnValueMap(
[
['catalog_product_super_attribute', 'catalog_product_super_attribute value'],
['catalog_product_entity', 'catalog_product_entity value'],
['catalog_product_super_link', 'catalog_product_super_link value'],
['eav_attribute', 'eav_attribute value'],
['catalog_product_entity', 'catalog_product_entity value'],
['catalog_product_super_attribute_label', 'catalog_product_super_attribute_label value'],
['eav_attribute_option', 'eav_attribute_option value']
]
)
);

$source = $this->getMockBuilder(AbstractSource::class)
->disableOriginalConstructor()
Expand Down

0 comments on commit a7c6f07

Please sign in to comment.