Guest User

Untitled

a guest
Oct 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. protected $priceCurrency;
  2.  
  3. public function __construct(
  4. ...
  5. MagentoFrameworkPricingPriceCurrencyInterface $priceCurrency
  6. ) {
  7. $this->priceCurrency = $priceCurrency;
  8. }
  9.  
  10. protected function format($value)
  11. {
  12. return $this->priceCurrency->format($value);
  13. }
Add Comment
Please, Sign In to add comment