Formatter.php 434 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Helper;
  7. /**
  8. * Class Formatter
  9. * @api
  10. * @since 100.1.0
  11. */
  12. trait Formatter
  13. {
  14. /**
  15. * Format price to 0.00 format
  16. *
  17. * @param mixed $price
  18. * @return string
  19. * @since 100.1.0
  20. */
  21. public function formatPrice($price)
  22. {
  23. return sprintf('%.2F', $price);
  24. }
  25. }