Skip to content

Commit ccb1b2f

Browse files
committed
AC-13855: Penny rounding error in catalog rule
Fix for static failure
1 parent d44665b commit ccb1b2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Directory/Model/PriceCurrency.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2014 Adobe.
4+
* All rights reserved.
55
*/
66
namespace Magento\Directory\Model;
77

@@ -15,7 +15,7 @@
1515
*/
1616
class PriceCurrency implements \Magento\Framework\Pricing\PriceCurrencyInterface
1717
{
18-
const PRECISION_TO_FIX_PENNY_ROUNDING_ERROR = 3;
18+
private const PRECISION_TO_FIX_PENNY_ROUNDING_ERROR = 3;
1919

2020
/**
2121
* @var \Magento\Store\Model\StoreManagerInterface

0 commit comments

Comments
 (0)