Conditions | 3 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Darryldecode\Cart\Helpers; |
||
70 | public static function formatValue($value, $format_numbers, $config) |
||
71 | { |
||
72 | if($format_numbers && $config['format_numbers']) { |
||
73 | return number_format($value, $config['decimals'], $config['dec_point'], $config['thousands_sep']); |
||
74 | } else { |
||
75 | return $value; |
||
76 | } |
||
77 | } |
||
78 | } |