Preview: MoneyFormatter.php
Size: 311 B
/proc/thread-self/root/home/byroehnu/easetack.com/vendor/moneyphp/money/src/MoneyFormatter.php
<?php
declare(strict_types=1);
namespace Money;
/**
* Formats Money objects.
*/
interface MoneyFormatter
{
/**
* Formats a Money object as string.
*
* @phpstan-return non-empty-string
*
* Exception\FormatterException
*/
public function format(Money $money): string;
}
Directory Contents
Dirs: 7 × Files: 14