Skip to content

Commit 5d9bb01

Browse files
Merge pull request #6921 from magento-engcom/api-changes-delivery
Api changes delivery
2 parents ba4ed01 + 18b7e00 commit 5d9bb01

File tree

161 files changed

+257
-3
lines changed

Some content is hidden

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

161 files changed

+257
-3
lines changed

app/code/Magento/Catalog/Controller/Adminhtml/Product.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
7+
68
namespace Magento\Catalog\Controller\Adminhtml;
79

810
use Magento\Backend\App\Action;
911

1012
/**
1113
* Catalog product controller
14+
*
15+
* @api
16+
*
1217
* @SuppressWarnings(PHPMD.NumberOfChildren)
1318
*/
1419
abstract class Product extends \Magento\Backend\App\Action

app/code/Magento/Catalog/Pricing/Price/FinalPrice.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
declare(strict_types=1);
67

78
namespace Magento\Catalog\Pricing\Price;
89

@@ -11,6 +12,8 @@
1112

1213
/**
1314
* Final price model
15+
*
16+
* @api
1417
*/
1518
class FinalPrice extends AbstractPrice implements FinalPriceInterface
1619
{

app/code/Magento/Checkout/Api/Exception/PaymentProcessingRateLimitExceededException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* Thrown when too many payment processing/saving requests have been initiated by a user.
15+
*
16+
* @api
1517
*/
1618
class PaymentProcessingRateLimitExceededException extends LocalizedException
1719
{

app/code/Magento/Cron/Model/DeadlockRetrierInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* Retrier Interface
14+
*
15+
* @api
1416
*/
1517
interface DeadlockRetrierInterface
1618
{

app/code/Magento/Csp/Api/CspAwareActionInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* Interface for controllers that can provide route-specific CSPs.
14+
*
15+
* @api
1416
*/
1517
interface CspAwareActionInterface extends ActionInterface
1618
{

app/code/Magento/Csp/Api/CspRendererInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* Renders configured CSPs
14+
*
15+
* @api
1416
*/
1517
interface CspRendererInterface
1618
{

app/code/Magento/Csp/Api/Data/ModeConfiguredInterface.php

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

1010
/**
1111
* CSP mode.
12+
*
13+
* @api
1214
*/
1315
interface ModeConfiguredInterface
1416
{

app/code/Magento/Csp/Api/Data/PolicyInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
* Defined Content Security Policy.
1212
*
1313
* Different policies will have different types of data but they all will have identifiers and string representations.
14+
*
15+
* @api
1416
*/
1517
interface PolicyInterface
1618
{

app/code/Magento/Csp/Api/InlineUtilInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* Utility for classes responsible for rendering and templates that allows whitelist inline sources.
14+
*
15+
* @api
1416
*/
1517
interface InlineUtilInterface
1618
{

app/code/Magento/Csp/Api/ModeConfigManagerInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
* CSP mode config manager.
1414
*
1515
* Responsible for CSP mode configurations like report-only/restrict modes, report URL etc.
16+
*
17+
* @api
1618
*/
1719
interface ModeConfigManagerInterface
1820
{

0 commit comments

Comments
 (0)