Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?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); | |
| } |