| 1 | <?php |
||
| 15 | class PaymentMethodContext implements PaymentMethodInterface |
||
| 16 | { |
||
| 17 | protected $session; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param SessionInterface $session |
||
| 21 | */ |
||
| 22 | public function __construct(SessionInterface $session) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function getMethod() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function setMethod($method = null) |
||
| 42 | } |
||
| 43 |