Skip to content

Commit 44b5bbf

Browse files
author
Andrey Konosov
committed
MAGETWO-66143: Increase api coverage for catalog, catalogStaging and advancedCatalog modules
1 parent 8a22c56 commit 44b5bbf

33 files changed

+80
-4
lines changed

app/code/Magento/Catalog/Helper/Product/Composite.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
/**
1818
* Adminhtml catalog product composite helper
1919
*
20+
* @api
21+
*
2022
* @author Magento Core Team <core@magentocommerce.com>
2123
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2224
*/

app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php

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

88
use Magento\Store\Model\ScopeInterface;
99

10+
/**
11+
* @api
12+
*/
1013
abstract class AbstractFlatState
1114
{
1215
/**

app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php

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

77
namespace Magento\Catalog\Model\Indexer\Category\Flat;
88

9+
/**
10+
* Static columns provider
11+
*
12+
* @api
13+
*/
914
class SkipStaticColumnsProvider
1015
{
1116
/**

app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\Catalog\Model\Indexer\Category\Flat;
77

8+
/**
9+
* @api
10+
*/
811
class State extends \Magento\Catalog\Model\Indexer\AbstractFlatState
912
{
1013
/**

app/code/Magento/Catalog/Model/Indexer/Category/Product.php

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

88
use Magento\Framework\Indexer\CacheContext;
99

10+
/**
11+
* Category product indexer
12+
*
13+
* @api
14+
*/
1015
class Product implements \Magento\Framework\Indexer\ActionInterface, \Magento\Framework\Mview\ActionInterface
1116
{
1217
/**

app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
/**
1717
* Class AbstractAction
18+
*
19+
* @api
20+
*
1821
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
1922
*/
2023
abstract class AbstractAction

app/code/Magento/Catalog/Model/Indexer/Product/Category.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
*/
66
namespace Magento\Catalog\Model\Indexer\Product;
77

8+
/**
9+
* @api
10+
*/
811
class Category extends \Magento\Catalog\Model\Indexer\Category\Product
912
{
1013
/**

app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php

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

88
/**
99
* Interface BuilderInterface
10+
*
11+
* @api
1012
*/
1113
interface BuilderInterface
1214
{

app/code/Magento/Catalog/Model/Product/Action.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
/**
1212
* Catalog Product Mass Action processing model
1313
*
14+
* @api
15+
*
1416
* @author Magento Core Team <core@magentocommerce.com>
1517
*/
1618
class Action extends \Magento\Framework\Model\AbstractModel

app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
namespace Magento\Catalog\Model\Product;
8+
79
/**
810
* Product price interface for external catalogs
11+
*
12+
* @api
913
*/
10-
namespace Magento\Catalog\Model\Product;
11-
1214
interface CatalogPriceInterface
1315
{
1416
/**

0 commit comments

Comments
 (0)