Skip to content

Commit 9017c18

Browse files
committed
ACP2E-1875: [Magento Cloud] Products incorrectly showed Out of Stock then all products show in stock
- fixed static
1 parent 621bf70 commit 9017c18

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/internal/Magento/Framework/Indexer/SaveHandler/EnhancedIndexerInterface.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
11
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
26

37
namespace Magento\Framework\Indexer\SaveHandler;
48

59
interface EnhancedIndexerInterface extends IndexerInterface
610
{
711
/**
12+
* Disable stacked queries mode
13+
*
814
* @return void
915
*/
1016
public function disableStackedActions(): void;
1117

1218
/**
19+
* Activates stacked actions mode
20+
*
1321
* @return void
1422
*/
1523
public function enableStackedActions(): void;
1624

1725
/**
26+
* Run stacked queries
27+
*
1828
* @return void
1929
*/
2030
public function triggerStackedActions(): void;

0 commit comments

Comments
 (0)