Moved more helper methods out to the utility classes.

This commit is contained in:
2022-03-12 06:00:16 +02:00
parent 3331a4c28d
commit ec827b7369
20 changed files with 824 additions and 793 deletions

View File

@ -14,7 +14,9 @@ namespace VDM\Joomla\Utilities;
/**
* Basic Math Helper
* Basic Math Helper
*
* @since 3.0.9
*/
abstract class MathHelper
{
@ -27,7 +29,8 @@ abstract class MathHelper
* @param int $scale The scale value
*
* @return int
*
*
* @since 3.0.9
*/
public static function bc($type, $val1, $val2, $scale = 0)
{
@ -76,7 +79,8 @@ abstract class MathHelper
* @param int $scale The scale value
*
* @return float
*
*
* @since 3.0.9
*/
public static function sum($array, $scale = 4)
{