Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class PartyIdentification extends BaseComponent { |
||
16 | |||
17 | protected $ID; |
||
18 | protected $IDAttributes; |
||
19 | |||
20 | function xmlSerialize(Writer $writer) { |
||
21 | $writer->write([ |
||
22 | 'name' => SchemaNS::CBC . 'ID', |
||
23 | 'value' => $this->ID, |
||
24 | 'attributes' => $this->IDAttributes |
||
25 | ]); |
||
26 | } |
||
27 | |||
28 | public function getID() { |
||
30 | } |
||
31 | |||
32 | public function setID($ID) { |
||
35 | } |
||
36 | |||
38 |