Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
50.00% |
3 / 6 |
CRAP | |
66.67% |
6 / 9 |
| Currency | |
0.00% |
0 / 1 |
|
50.00% |
3 / 6 |
8.81 | |
66.67% |
6 / 9 |
| __construct | |
0.00% |
0 / 1 |
2.06 | |
75.00% |
3 / 4 |
|||
| getCode | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| equals | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| isAvailableWithin | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| __toString | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| jsonSerialize | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| <?php | |
| namespace Money; | |
| /** | |
| * Currency Value Object. | |
| * | |
| * Holds Currency specific data. | |
| * | |
| * @author Mathias Verraes | |
| */ | |
| final class Currency implements \JsonSerializable | |
| { | |
| /** | |
| * Currency code. | |
| * | |
| * @var string | |
| */ | |
| private $code; | |
| /** | |
| * @param string $code | |
| */ | |
| public function __construct($code) | |
| { | |
| if (!is_string($code)) { | |
| throw new \InvalidArgumentException('Currency code should be string'); | |
| } | |
| $this->code = $code; | |
| } | |
| /** | |
| * Returns the currency code. | |
| * | |
| * @return string | |
| */ | |
| public function getCode() | |
| { | |
| return $this->code; | |
| } | |
| /** | |
| * Checks whether this currency is the same as an other. | |
| * | |
| * @param Currency $other | |
| * | |
| * @return bool | |
| */ | |
| public function equals(Currency $other) | |
| { | |
| return $this->code === $other->code; | |
| } | |
| /** | |
| * Checks whether this currency is available in the passed context. | |
| * | |
| * @param Currencies $currencies | |
| * | |
| * @return bool | |
| */ | |
| public function isAvailableWithin(Currencies $currencies) | |
| { | |
| return $currencies->contains($this); | |
| } | |
| /** | |
| * @return string | |
| */ | |
| public function __toString() | |
| { | |
| return $this->getCode(); | |
| } | |
| /** | |
| * {@inheritdoc} | |
| * | |
| * @return string | |
| */ | |
| public function jsonSerialize() | |
| { | |
| return $this->code; | |
| } | |
| } |