Skip to content

Commit 0e41442

Browse files
author
Cari Spruiell
committed
MAGETWO-32953: Fix Bamboo builds
- fix code formatting issues
1 parent 300f28c commit 0e41442

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ abstract class AbstractComposite extends \Magento\Backend\Model\Config\Structure
2121
public function __construct(
2222
\Magento\Framework\Store\StoreManagerInterface $storeManager,
2323
Iterator $childrenIterator
24-
)
25-
{
24+
) {
2625
parent::__construct($storeManager);
2726
$this->_childrenIterator = $childrenIterator;
2827
}

app/code/Magento/Catalog/Model/Product/GroupPriceManagement.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public function remove($productSku, $customerGroupId)
126126
{
127127
$product = $this->productRepository->get($productSku, true);
128128
$websiteIdentifier = 0;
129-
$value = $this->config->getValue('catalog/price/scope',\Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE);
129+
$value = $this->config->getValue('catalog/price/scope', \Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE);
130130
if ($value != 0) {
131131
$websiteIdentifier = $this->storeManager->getWebsite()->getId();
132132
}
@@ -141,7 +141,7 @@ public function getList($productSku, $websiteId = null)
141141
{
142142
$product = $this->productRepository->get($productSku, true);
143143
$priceKey = 'website_price';
144-
$value = $this->config->getValue('catalog/price/scope',\Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE);
144+
$value = $this->config->getValue('catalog/price/scope', \Magento\Framework\Store\ScopeInterface::SCOPE_WEBSITE);
145145
if ($value == 0) {
146146
$priceKey = 'price';
147147
}

app/code/Magento/Checkout/Helper/Data.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ protected function _getEmails($configPath, $storeId)
334334
{
335335
$data = $this->_scopeConfig->getValue(
336336
$configPath,
337-
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE, $storeId
337+
\Magento\Framework\Store\ScopeInterface::SCOPE_STORE,
338+
$storeId
338339
);
339340
if (!empty($data)) {
340341
return explode(',', $data);

0 commit comments

Comments
 (0)