We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c3ca8 commit b9e6945Copy full SHA for b9e6945
src/Helpers/BrickCalculator.php
@@ -53,6 +53,6 @@ public function round(Decimal $x, int $precision): Decimal
53
\define(
54
__NAMESPACE__ . '\\BRICK_HALF_EVEN',
55
\defined(BrickRoundingMode::class . '::HalfEven') ?
56
- BrickRoundingMode::HalfEven : // < 0.14
57
- BrickRoundingMode::HALF_EVEN, // >= 0.14, removed since 0.15
+ BrickRoundingMode::HalfEven : // >= 0.14
+ BrickRoundingMode::HALF_EVEN, // < 0.14, removed since 0.15
58
);
0 commit comments