You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
594 B

3 years ago
  1. <?php namespace Wpstudio\Sber\Classes;
  2. use OFFLINE\Mall\Classes\Utils\DefaultMoney;
  3. /***
  4. * Helper class to solve this problem https://github.com/OFFLINE-GmbH/oc-mall-plugin/issues/258
  5. * paypal error after redirect to site
  6. * After payment via PayPal upon returning to the site, we get an error Call to a member function getCurrent() on null
  7. */
  8. class DefaultMoneyRepair extends DefaultMoney
  9. {
  10. final protected function render($contents, array $vars): string
  11. {
  12. return number_format($vars['price'],$vars['currency']->decimals, ',', ' ').' '.$vars['currency']->symbol;
  13. }
  14. }