Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class AccountingSupplierParty extends BaseComponent { |
||
16 | |||
17 | /** @var Party */ |
||
18 | protected $Party; |
||
19 | |||
20 | function xmlSerialize(Writer $writer) { |
||
21 | $writer->write([ |
||
22 | SchemaNS::CAC . 'Party' => $this->Party |
||
23 | ]); |
||
24 | } |
||
25 | |||
26 | public function getParty() { |
||
28 | } |
||
29 | |||
30 | public function setParty($Party) { |
||
33 | } |
||
34 | |||
36 |