File "MoneyFormatter.php"

Full Path: /home/isoftco/public_html/hrm/vendor/moneyphp/money/src/MoneyFormatter.php
File size: 342 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Money;

/**
 * Formats Money objects.
 *
 * @author Frederik Bosch <f.bosch@genkgo.nl>
 */
interface MoneyFormatter
{
    /**
     * Formats a Money object as string.
     *
     * @param Money $money
     *
     * @return string
     *
     * Exception\FormatterException
     */
    public function format(Money $money);
}