Documentation

MoneyProxy implements IMoney

A wrapper for the money\money money class.

This proxies all calls to the internal class, and any methods that return a Money instance are wrapped in a new instance of MoneyProxy.

This is so we can swap out the underlying money implementation

Table of Contents

$money Money Money
$formatter Formatter IntlMoneyFormatter
$decFmt Decimal formatter DecimalMoneyFormatter
__construct() Create a new money wrapper mixed
getFormattedAmount() Retrieve the amount formatted as currency string
jsonSerialize() Specify data which should be serialized to JSON <p>Serializes the object to a value that can be serialized natively by <code>json_encode()</code>.</p> mixed
isSameCurrency() Checks whether a IMoney has the same Currency as this. bool
equals() Checks whether the value represented by this object equals to the other. bool
compare() Returns an integer less than, equal to, or greater than zero if the value of this object is considered to be respectively less than, equal to, or greater than the other. int
greaterThan() Checks whether the value represented by this object is greater than the other. bool
greaterThanOrEqual() bool
lessThan() Checks whether the value represented by this object is less than the other. bool
lessThanOrEqual() bool
getAmount() Returns the value represented by this object. string
getCurrency() Returns the currency of this object. Currency
getMoney() Retrieve the wrapped Money object instance Money
add() Returns a new IMoney object that represents the sum of this and an other IMoney object. IMoney
subtract() Returns a new IMoney object that represents the difference of this and an other IMoney object. IMoney
multiply() Returns a new IMoney object that represents the multiplied value by the given factor. IMoney
divide() Returns a new IMoney object that represents the divided value by the given factor. IMoney
mod() Returns a new IMoney object that represents the remainder after dividing the value by the given factor. IMoney
allocate() Allocate the money according to a list of ratios. \buffalokiwi\magicgraph\money\IMoney[]
allocateTo() Allocate the money among N targets. \buffalokiwi\magicgraph\money\IMoney[]
ratioOf() string
absolute() IMoney
negative() IMoney
isZero() Checks if the value represented by this object is zero. bool
isPositive() Checks if the value represented by this object is positive. bool
isNegative() Checks if the value represented by this object is negative. bool
__toString() string

Properties

Methods

__construct()

Create a new money wrapper

public __construct( $money : Money , $formatter : IntlMoneyFormatter , $decFmt : DecimalMoneyFormatter ) : mixed
Parameters
$money : Money

Money to wrap

$formatter : IntlMoneyFormatter
$decFmt : DecimalMoneyFormatter
Return values
mixed

getFormattedAmount()

Retrieve the amount formatted as currency

public getFormattedAmount( ) : string
Return values
string

amount

jsonSerialize()

Specify data which should be serialized to JSON <p>Serializes the object to a value that can be serialized natively by <code>json_encode()</code>.</p>

public jsonSerialize( ) : mixed
Tags
link
http://php.net/manual/en/jsonserializable.jsonserialize.php
since

PHP 5 >= 5.4.0, PHP 7

Return values
mixed

<p>Returns data which can be serialized by <code>json_encode()</code>, which is a value of any type other than a <code>resource</code>.</p>

isSameCurrency()

Checks whether a IMoney has the same Currency as this.

public isSameCurrency( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

equals()

Checks whether the value represented by this object equals to the other.

public equals( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

compare()

Returns an integer less than, equal to, or greater than zero if the value of this object is considered to be respectively less than, equal to, or greater than the other.

public compare( $other : IMoney ) : int
Parameters
$other : IMoney
Return values
int

greaterThan()

Checks whether the value represented by this object is greater than the other.

public greaterThan( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

greaterThanOrEqual()

public greaterThanOrEqual( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

lessThan()

Checks whether the value represented by this object is less than the other.

public lessThan( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

lessThanOrEqual()

public lessThanOrEqual( $other : IMoney ) : bool
Parameters
$other : IMoney
Return values
bool

getAmount()

Returns the value represented by this object.

public getAmount( ) : string
Return values
string

getCurrency()

Returns the currency of this object.

public getCurrency( ) : Currency
Return values
Currency

getMoney()

Retrieve the wrapped Money object instance

public getMoney( ) : Money
Return values
Money

Money

add()

Returns a new IMoney object that represents the sum of this and an other IMoney object.

public add( ...$addends : \buffalokiwi\magicgraph\money\IMoney[] ) : IMoney
Parameters
$addends : \buffalokiwi\magicgraph\money\IMoney[]
Return values
IMoney

subtract()

Returns a new IMoney object that represents the difference of this and an other IMoney object.

public subtract( ...$subtrahends : \buffalokiwi\magicgraph\money\IMoney[] ) : IMoney
Parameters
$subtrahends : \buffalokiwi\magicgraph\money\IMoney[]
Return values
IMoney

multiply()

Returns a new IMoney object that represents the multiplied value by the given factor.

public multiply( $multiplier : float|int|string [, $roundingMode : int = self::ROUND_HALF_UP ] ) : IMoney
Parameters
$multiplier : float|int|string
$roundingMode : int = self::ROUND_HALF_UP
Return values
IMoney

divide()

Returns a new IMoney object that represents the divided value by the given factor.

public divide( $divisor : float|int|string [, $roundingMode : int = self::ROUND_HALF_UP ] ) : IMoney
Parameters
$divisor : float|int|string
$roundingMode : int = self::ROUND_HALF_UP
Return values
IMoney

mod()

Returns a new IMoney object that represents the remainder after dividing the value by the given factor.

public mod( $divisor : IMoney ) : IMoney
Parameters
$divisor : IMoney
Return values
IMoney

allocate()

Allocate the money according to a list of ratios.

public allocate( $ratios : array ) : \buffalokiwi\magicgraph\money\IMoney[]
Parameters
$ratios : array
Return values
\buffalokiwi\magicgraph\money\IMoney[]

allocateTo()

Allocate the money among N targets.

public allocateTo( $n : int ) : \buffalokiwi\magicgraph\money\IMoney[]
Parameters
$n : int
Tags
throws
InvalidArgumentException

If number of targets is not an integer

Return values
\buffalokiwi\magicgraph\money\IMoney[]

isZero()

Checks if the value represented by this object is zero.

public isZero( ) : bool
Return values
bool

isPositive()

Checks if the value represented by this object is positive.

public isPositive( ) : bool
Return values
bool

isNegative()

Checks if the value represented by this object is negative.

public isNegative( ) : bool
Return values
bool

__toString()

public __toString( ) : string
Return values
string

Search results