Skip to content

Commit 4222c43

Browse files
QuentinGabgithub-actions[bot]
authored andcommitted
Fix styling
1 parent bebabbe commit 4222c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InvoiceDiscount.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function computeDiscountAmountOn(Money $amout): Money
2626
return $this->amount_off;
2727
}
2828

29-
if (!is_null($this->percent_off)) {
29+
if (! is_null($this->percent_off)) {
3030
return $amout->multipliedBy($this->percent_off / 100, RoundingMode::HALF_CEILING);
3131
}
3232

0 commit comments

Comments
 (0)