Skip to content

Commit 559dddc

Browse files
author
Gabriel Galvao da Gama
committed
Merge remote-tracking branch 'engcom/imported-magento-magento2-32816' into api-changes-develop-sync
2 parents 456d4e9 + 99ab580 commit 559dddc

File tree

27 files changed

+77
-3
lines changed

27 files changed

+77
-3
lines changed

app/code/Magento/CatalogGraphQl/DataProvider/Product/LayeredNavigation/LayerBuilderInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* ],
2727
* ...
2828
* ];
29+
*
30+
* @api
2931
*/
3032
interface LayerBuilderInterface
3133
{

app/code/Magento/CatalogGraphQl/Model/Resolver/Categories/DataProvider/Category/CollectionProcessorInterface.php

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

1414
/**
1515
* Add additional joins, attributes, and clauses to a category collection.
16+
*
17+
* @api
1618
*/
1719
interface CollectionProcessorInterface
1820
{

app/code/Magento/CatalogGraphQl/Model/Resolver/Product/Price/ProviderInterface.php

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

1313
/**
1414
* Provides product prices
15+
*
16+
* @api
1517
*/
1618
interface ProviderInterface
1719
{

app/code/Magento/CatalogGraphQl/Model/Resolver/Products/DataProvider/Product/CollectionProcessorInterface.php

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

1414
/**
1515
* Add additional joins, attributes, and clauses to a product collection.
16+
*
17+
* @api
1618
*/
1719
interface CollectionProcessorInterface
1820
{

app/code/Magento/CatalogGraphQl/Model/Resolver/Products/Query/ProductQueryInterface.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\CatalogGraphQl\Model\Resolver\Products\Query;
89

@@ -12,6 +13,8 @@
1213

1314
/**
1415
* Search for products by criteria
16+
*
17+
* @api
1518
*/
1619
interface ProductQueryInterface
1720
{

app/code/Magento/CatalogGraphQl/Model/Resolver/Products/SearchResult.php

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

1212
/**
1313
* Container for a product search holding the item result and the array in the GraphQL-readable product type format.
14+
*
15+
* @api
1416
*/
1517
class SearchResult
1618
{

app/code/Magento/CatalogImportExport/Model/Export/ProductFilterInterface.php

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

1010
use Magento\Catalog\Model\ResourceModel\Product\Collection;
1111

12+
/**
13+
* Product filter interface
14+
*
15+
* @api
16+
*/
1217
interface ProductFilterInterface
1318
{
1419
/**

app/code/Magento/CatalogRule/Model/Indexer/IndexerTableSwapperInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
/**
1111
* Manage additional tables used while building new index to preserve
1212
* index tables until the process finishes.
13+
*
14+
* @api
1315
*/
1416
interface IndexerTableSwapperInterface
1517
{

app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +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\CatalogSearch\Model\Adapter\Aggregation;
79

810
use Magento\Framework\Search\RequestInterface;
911

1012
/**
1113
* RequestCheckerInterface provides the interface to work with query checkers.
14+
*
15+
* @api
1216
*/
1317
interface RequestCheckerInterface
1418
{

app/code/Magento/CatalogSearch/Model/Advanced/ProductCollectionPrepareStrategyInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +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\CatalogSearch\Model\Advanced;
79

810
use Magento\Catalog\Model\ResourceModel\Product\Collection;
911

1012
/**
1113
* Strategy interface for preparing product collection.
14+
*
15+
* @api
1216
*/
1317
interface ProductCollectionPrepareStrategyInterface
1418
{

0 commit comments

Comments
 (0)