Skip to content

Commit af78891

Browse files
author
Andrii Kasian
committed
Merge branch 'MAGETWO-32622' into S67
2 parents 3a88885 + fa8bbd7 commit af78891

24 files changed

+334
-198
lines changed

app/code/Magento/Bundle/Api/Data/LinkInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
namespace Magento\Bundle\Api\Data;
99

10+
/**
11+
* Interface LinkInterface
12+
* @api
13+
*/
1014
interface LinkInterface extends \Magento\Framework\Api\ExtensibleDataInterface
1115
{
1216
const PRICE_TYPE_FIXED = 0;

app/code/Magento/Bundle/Api/Data/OptionInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
namespace Magento\Bundle\Api\Data;
99

10+
/**
11+
* Interface OptionInterface
12+
* @api
13+
*/
1014
interface OptionInterface extends \Magento\Framework\Api\ExtensibleDataInterface
1115
{
1216
/**

app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
*/
77
namespace Magento\Bundle\Api\Data;
88

9+
/**
10+
* Interface OptionTypeInterface
11+
* @api
12+
*/
913
interface OptionTypeInterface extends \Magento\Framework\Api\ExtensibleDataInterface
1014
{
1115
/**

app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
*/
77
namespace Magento\Bundle\Api;
88

9+
/**
10+
* Interface for Management of ProductLink
11+
* @api
12+
*/
913
interface ProductLinkManagementInterface
1014
{
1115
/**

app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
*/
77
namespace Magento\Bundle\Api;
88

9+
/**
10+
* Interface ProductOptionRepositoryInterface
11+
* @api
12+
*/
913
interface ProductOptionRepositoryInterface
1014
{
1115
/**

app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
*/
77
namespace Magento\Bundle\Api;
88

9+
/**
10+
* Interface ProductOptionTypeListInterface
11+
* @api
12+
*/
913
interface ProductOptionTypeListInterface
1014
{
1115
/**

app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php

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

88
/**
99
* Option price interface
10+
* @api
1011
*/
1112
interface BundleOptionPriceInterface
1213
{

app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php

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

99
/**
1010
* Interface DiscountProviderInterface
11+
* @api
1112
*/
1213
interface DiscountProviderInterface
1314
{

app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php

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

99
/**
1010
* Interface FinalPriceInterface
11+
* @api
1112
*/
1213
interface FinalPriceInterface extends \Magento\Catalog\Pricing\Price\FinalPriceInterface
1314
{

app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php

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

99
/**
1010
* Regular price interface
11+
* @api
1112
*/
1213
interface RegularPriceInterface extends \Magento\Framework\Pricing\Price\BasePriceProviderInterface
1314
{

0 commit comments

Comments
 (0)