%PDF- %PDF-
| Direktori : /var/www/pjc/vendor/moneyphp/money/src/ |
| Current File : /var/www/pjc/vendor/moneyphp/money/src/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);
}