1 | <?php |
||
7 | trait CurrencyTrait |
||
8 | { |
||
9 | use OptionAccessorsTrait; |
||
10 | |||
11 | /** |
||
12 | * @param false|string $currency |
||
13 | * @return $this |
||
14 | * @link http://symfony.com/doc/current/reference/forms/types/money.html#currency |
||
15 | */ |
||
16 | public function setCurrency($currency) |
||
20 | |||
21 | /** |
||
22 | * @return false|string |
||
23 | */ |
||
24 | public function getCurrency() |
||
28 | } |
||
29 |