Skip to content

Commit 7fb9c0b

Browse files
author
Yaroslav Onischenko
committed
MAGETWO-55908: Prepare PR
1 parent a41593b commit 7fb9c0b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/**
1010
* @api
11+
* @deprecated use ScopedProductTierPriceManagementInterface instead
1112
*/
1213
interface ProductTierPriceManagementInterface
1314
{

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ private function customizeAdvancedPricing()
650650
/**
651651
* Retrieve store
652652
*
653-
* @return \Magento\Store\Model\Store
653+
* @return \Magento\Store\Api\Data\StoreInterface
654654
*/
655655
private function getStore()
656656
{

app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
namespace Magento\Customer\Model\Customer\Attribute\Source;
88

9-
use Magento\Framework\Option\ArrayInterface as OptionArrayInterface;
9+
use \Magento\Framework\Data\OptionSourceInterface;
1010

11-
interface GroupSourceLoggedInOnlyInterface extends OptionArrayInterface
11+
interface GroupSourceLoggedInOnlyInterface extends OptionSourceInterface
1212
{
1313

1414
}

app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
*/
66
namespace Magento\Customer\Model\Customer\Source;
77

8-
use Magento\Framework\Option\ArrayInterface as OptionArrayInterface;
8+
use Magento\Framework\Data\OptionSourceInterface;
99

10-
interface GroupSourceInterface extends OptionArrayInterface
10+
interface GroupSourceInterface extends OptionSourceInterface
1111
{
1212

1313
}

0 commit comments

Comments
 (0)