FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
moneyphp
/
money
/
src
Edit File: MoneyFormatter.php
<?php namespace Money; /** * Formats Money objects. * * @author Frederik Bosch <f.bosch@genkgo.nl> */ interface MoneyFormatter { /** * Formats a Money object as string. * * @return string * * Exception\FormatterException */ public function format(Money $money); }
Save
Back