Completed
Pull Request — master (#6)
by
unknown
02:24
created
src/Calculators/DebtAmortizator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -351,8 +351,7 @@
 block discarded – undo
351 351
 										$totalAmount = MathFuncs::round_up($repayment->getTotalAmount(), 2);
352 352
 										$interestAmount = MathFuncs::round($repayment->getInterestAmount(), 2);
353 353
 										$principalAmount = MathFuncs::round($totalAmount - $interestAmount, 2);
354
-								}
355
-								else {
354
+								} else {
356 355
 										$interestAmount = MathFuncs::round($repayment->getInterestAmount(), 2);
357 356
 										$totalAmount = MathFuncs::round(MathFuncs::add($balance, $interestAmount), 2);
358 357
 										$principalAmount = MathFuncs::round($balance, 2);
Please login to merge, or discard this patch.