Skip to content

Commit 998c146

Browse files
author
Gabriel Galvao da Gama
committed
Merge remote-tracking branch 'magento-engcom/imported-magento-magento2-32727' into api-changes-delivery
2 parents af6d19d + 18743c0 commit 998c146

22 files changed

+53
-0
lines changed

app/code/Magento/GraphQl/Controller/HttpHeaderProcessorInterface.php

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

1010
/**
1111
* Use this interface to implement a processor for each entry of a header in an HTTP GraphQL request.
12+
*
13+
* @api
1214
*/
1315
interface HttpHeaderProcessorInterface
1416
{

app/code/Magento/GraphQl/Controller/HttpRequestValidatorInterface.php

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

1313
/**
1414
* Use this interface to implement a validator for a Graphql HTTP requests
15+
*
16+
* @api
1517
*/
1618
interface HttpRequestValidatorInterface
1719
{

app/code/Magento/GraphQl/Model/Query/ContextInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
*
1717
* GraphQL will pass the same instance of this interface to each field resolver, so these resolvers could have
1818
* shared access to the same data for ease of implementation purposes.
19+
*
20+
* @api
1921
*/
2022
interface ContextInterface extends BaseContextInterface, ExtensibleDataInterface
2123
{

app/code/Magento/GraphQl/Model/Query/ContextParametersInterface.php

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

1010
/**
1111
* Provide possibility to add custom parameters to context object
12+
*
13+
* @api
1214
*/
1315
interface ContextParametersInterface
1416
{

app/code/Magento/GraphQl/Model/Query/ContextParametersProcessorInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* - Class must extend ContextParametersProcessorInterface.
1515
* - Implement execute method which adds additional data to the context though extension attributes.
1616
* - This data will be present in each resolver.
17+
*
18+
* @api
1719
*/
1820
interface ContextParametersProcessorInterface
1921
{

app/code/Magento/ImportExport/Api/Data/ExtendedExportInfoInterface.php

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

1010
/**
1111
* Extended export interface for implementation of Skipped Attributes which are missing from the basic interface
12+
*
13+
* @api
1214
*/
1315
interface ExtendedExportInfoInterface extends ExportInfoInterface
1416
{

app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php

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

78
namespace Magento\ImportExport\Model\Report;
89

910
use Magento\ImportExport\Model\Import\ErrorProcessing\ProcessingErrorAggregatorInterface;
1011

1112
/**
1213
* Error report generator interface
14+
*
15+
* @api
1316
*/
1417
interface ReportProcessorInterface
1518
{

app/code/Magento/Indexer/Model/DimensionModes.php

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

1010
/**
1111
* DTO to work with dimension modes
12+
*
13+
* @api
1214
*/
1315
class DimensionModes
1416
{

app/code/Magento/Indexer/Model/ModeSwitcherInterface.php

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

1010
/**
1111
* Interface to switch indexer mode
12+
*
13+
* @api
1214
*/
1315
interface ModeSwitcherInterface
1416
{

app/code/Magento/Indexer/Model/Source/DataInterface.php

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

810
use Magento\Framework\Exception\NotFoundException;
911

1012
/**
1113
* Interface \Magento\Indexer\Model\Source\DataInterface
1214
*
15+
* @api
1316
*/
1417
interface DataInterface
1518
{

0 commit comments

Comments
 (0)