1 | <?php |
||
4 | class PaymentMethod |
||
5 | { |
||
6 | /** |
||
7 | * @var int |
||
8 | */ |
||
9 | private $type; |
||
10 | |||
11 | /** |
||
12 | * @var int |
||
13 | */ |
||
14 | private $code; |
||
15 | |||
16 | /** |
||
17 | * @param int $type |
||
18 | * @param int $code |
||
19 | */ |
||
20 | 2 | public function __construct($type, $code) |
|
25 | |||
26 | /** |
||
27 | * @return number |
||
28 | */ |
||
29 | 1 | public function getType() |
|
33 | |||
34 | /** |
||
35 | * @return number |
||
36 | */ |
||
37 | 1 | public function getCode() |
|
41 | } |
||
42 |