| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class AccountingCustomerParty 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() { |
||
| 27 | return $this->Party; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function setParty($Party) { |
||
| 33 | } |
||
| 34 | |||
| 35 | } |
||
| 36 |