Skip to content

Commit 6d26686

Browse files
author
Oleksandr Iegorov
committed
MAGETWO-94424: Wrong product and shipping prices are applying on admin orders
1 parent 089c8d9 commit 6d26686

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

app/code/Magento/Store/Model/Store.php

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ public function __construct(
412412
}
413413

414414
/**
415-
* @return string[]
415+
* @inheritdoc
416416
*/
417417
public function __sleep()
418418
{
@@ -786,7 +786,7 @@ public function isFrontUrlSecure()
786786
}
787787

788788
/**
789-
* @return bool
789+
* @inheritdoc
790790
*/
791791
public function isUrlSecure()
792792
{
@@ -1338,6 +1338,8 @@ public function getIdentities()
13381338
}
13391339

13401340
/**
1341+
* Get store path
1342+
*
13411343
* @return string
13421344
*/
13431345
public function getStorePath()
@@ -1347,34 +1349,31 @@ public function getStorePath()
13471349
}
13481350

13491351
/**
1350-
* {@inheritdoc}
1351-
* @since 100.1.0
1352+
* @inheritdoc
13521353
*/
13531354
public function getScopeType()
13541355
{
13551356
return ScopeInterface::SCOPE_STORE;
13561357
}
13571358

13581359
/**
1359-
* {@inheritdoc}
1360-
* @since 100.1.0
1360+
* @inheritdoc
13611361
*/
13621362
public function getScopeTypeName()
13631363
{
13641364
return 'Store View';
13651365
}
13661366

13671367
/**
1368-
* {@inheritdoc}
1368+
* @inheritdoc
13691369
*/
13701370
public function getExtensionAttributes()
13711371
{
13721372
return $this->_getExtensionAttributes();
13731373
}
13741374

13751375
/**
1376-
* @param \Magento\Store\Api\Data\StoreExtensionInterface $extensionAttributes
1377-
* @return $this
1376+
* @inheritdoc
13781377
*/
13791378
public function setExtensionAttributes(
13801379
\Magento\Store\Api\Data\StoreExtensionInterface $extensionAttributes

0 commit comments

Comments
 (0)