Viewing File: /home/rtsgrob/ww5/wp-content/plugins/give/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);
}
Back to Directory File Manager