We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebabbe commit 4222c43Copy full SHA for 4222c43
src/InvoiceDiscount.php
@@ -26,7 +26,7 @@ public function computeDiscountAmountOn(Money $amout): Money
26
return $this->amount_off;
27
}
28
29
- if (!is_null($this->percent_off)) {
+ if (! is_null($this->percent_off)) {
30
return $amout->multipliedBy($this->percent_off / 100, RoundingMode::HALF_CEILING);
31
32
0 commit comments