Completed
Pull Request — master (#6)
by
unknown
02:56
created
src/Utils/MathFuncs.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,11 +80,11 @@
 block discarded – undo
80 80
             return (string)number_format((float)$roundedNumber, $precision);
81 81
         }
82 82
         
83
-         /**
84
-         * @param $roundedNumber
85
-         * @param $precision
86
-         * @return string
87
-         */
83
+            /**
84
+             * @param $roundedNumber
85
+             * @param $precision
86
+             * @return string
87
+             */
88 88
         public static function round_up($roundedNumber, $precision = 2) 
89 89
         {
90 90
             return (string)ceil((float)$roundedNumber * pow(10, $precision)) / pow(10, $precision);
Please login to merge, or discard this patch.
src/Calculators/DebtAmortizator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -338,9 +338,9 @@
 block discarded – undo
338 338
             return $repayments;
339 339
         }
340 340
 				
341
-				 /**
342
-         * @return array
343
-         */
341
+                    /**
342
+                     * @return array
343
+                     */
344 344
         public function getDebtRepaymentsAsArraysRounded()
345 345
         {
346 346
             $repayments = array();
Please login to merge, or discard this patch.