Skip to content

Commit 31d1f64

Browse files
committed
fixed static test failures
1 parent 4111046 commit 31d1f64

File tree

1 file changed

+4
-4
lines changed
  • app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector

1 file changed

+4
-4
lines changed

app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Price.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
class Price implements ProductRenderCollectorInterface
2424
{
2525
/** FInal Price key */
26-
const KEY_FINAL_PRICE = "final_price";
26+
public const KEY_FINAL_PRICE = "final_price";
2727

2828
/** Minimal Price key */
29-
const KEY_MINIMAL_PRICE = "minimal_price";
29+
public const KEY_MINIMAL_PRICE = "minimal_price";
3030

3131
/** Regular Price key */
32-
const KEY_REGULAR_PRICE = "regular_price";
32+
public const KEY_REGULAR_PRICE = "regular_price";
3333

3434
/** Max Price key */
35-
const KEY_MAX_PRICE = "max_price";
35+
public const KEY_MAX_PRICE = "max_price";
3636

3737
/**
3838
* @var PriceCurrencyInterface

0 commit comments

Comments
 (0)