Skip to content

Commit 0bbf590

Browse files
committed
MAGETWO-53850: API interfaces lack @api annotation
1 parent 383362a commit 0bbf590

File tree

53 files changed

+170
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+170
-0
lines changed

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

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

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

app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php

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

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

app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php

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

1010
/**
1111
* Product option interface
12+
* @api
1213
*/
1314
interface ProductOptionInterface extends ExtensibleDataInterface
1415
{

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

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

77
namespace Magento\Catalog\Api;
88

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

app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php

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

88
/**
99
* Interface AgreementsValidatorInterface
10+
* @api
1011
*/
1112
interface AgreementsValidatorInterface
1213
{

app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php

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

8+
/**
9+
* Interface PaymentDetailsInterface
10+
* @api
11+
*/
812
interface PaymentDetailsInterface
913
{
1014
/**#@+

app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php

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

8+
/**
9+
* Interface ShippingInformationInterface
10+
* @api
11+
*/
812
interface ShippingInformationInterface extends \Magento\Framework\Api\CustomAttributesDataInterface
913
{
1014
/**#@+

app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php

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

8+
/**
9+
* Interface TotalsInformationInterface
10+
* @api
11+
*/
812
interface TotalsInformationInterface extends \Magento\Framework\Api\CustomAttributesDataInterface
913
{
1014
/**#@+

app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php

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

88
/**
99
* Interface for guest quote totals calculation
10+
* @api
1011
*/
1112
interface GuestTotalsInformationManagementInterface
1213
{

app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php

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

88
/**
99
* Interface for quote totals calculation
10+
* @api
1011
*/
1112
interface TotalsInformationManagementInterface
1213
{

0 commit comments

Comments
 (0)