11 líneas
160B

  1. <?php
  2. namespace common\helpers;
  3. class Price {
  4. public static function format($number) {
  5. return number_format($number, 2).' €' ;
  6. }
  7. }