| 1 | <?php |
||
| 16 | class CurrencyContext implements CurrencyContextInterface |
||
| 17 | { |
||
| 18 | protected $session; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param SessionInterface $session |
||
| 22 | */ |
||
| 23 | public function __construct(SessionInterface $session) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function getCurrency() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function setCurrency($currency) |
||
| 43 | } |
||
| 44 |