| 1 | <?php |
||
| 13 | final class Currency |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $code; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $code |
||
| 22 | */ |
||
| 23 | 24 | public function __construct($code) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | 12 | public function getCode() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param Currency $other |
||
| 42 | * |
||
| 43 | * @return bool |
||
| 44 | */ |
||
| 45 | 9 | public function equals(Currency $other) |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | 1 | public function __toString() |
|
| 57 | } |
||
| 58 |