1 | <?php |
||
13 | class Prepaid |
||
14 | { |
||
15 | /** |
||
16 | * @var BillShipper |
||
17 | */ |
||
18 | private $billShipper; |
||
19 | |||
20 | 2 | public function __construct($attributes = null) |
|
21 | { |
||
22 | 2 | $this->setBillShipper(new BillShipper($attributes)); |
|
23 | 2 | } |
|
24 | |||
25 | /** |
||
26 | * @return BillShipper |
||
27 | */ |
||
28 | public function getBillShipper() |
||
32 | |||
33 | /** |
||
34 | * @param BillShipper $billShipper |
||
35 | */ |
||
36 | 2 | public function setBillShipper($billShipper) |
|
40 | } |
||
41 |