Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
vendor
/
moneyphp
/
money
/
src
:
MoneyFormatter.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); }