Skip to content

Commit e8cf253

Browse files
committed
[BUGFIX] - Static test fixes
1 parent 626ff28 commit e8cf253

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ abstract class AbstractAction
3030
/**
3131
* Chunk size
3232
*/
33-
const RANGE_CATEGORY_STEP = 500;
33+
public const RANGE_CATEGORY_STEP = 500;
3434

3535
/**
3636
* Chunk size for product
3737
*/
38-
const RANGE_PRODUCT_STEP = 1000000;
38+
public const RANGE_PRODUCT_STEP = 1000000;
3939

4040
/**
4141
* Catalog category index table name
4242
*/
43-
const MAIN_INDEX_TABLE = 'catalog_category_product_index';
43+
public const MAIN_INDEX_TABLE = 'catalog_category_product_index';
4444

4545
/**
4646
* Suffix for table to show it is temporary
4747
* @deprecated see getIndexTable
4848
*/
49-
const TEMPORARY_TABLE_SUFFIX = '_tmp';
49+
public const TEMPORARY_TABLE_SUFFIX = '_tmp';
5050

5151
/**
5252
* Cached non anchor categories select by store id

0 commit comments

Comments
 (0)