Total Complexity | 5 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class SignatoryParty extends BaseComponent { |
||
16 | |||
17 | /** @var PartyIdentification */ |
||
18 | protected $PartyIdentification; |
||
19 | |||
20 | /** @var PartyName */ |
||
21 | protected $PartyName; |
||
22 | |||
23 | function xmlSerialize(Writer $writer) { |
||
24 | $me = $this; |
||
25 | $writer->write([ |
||
26 | SchemaNS::CAC . 'PartyIdentification' => $me->PartyIdentification, |
||
27 | SchemaNS::CAC . 'PartyName' => $me->PartyName |
||
28 | ]); |
||
29 | } |
||
30 | |||
31 | public function getPartyIdentification() { |
||
33 | } |
||
34 | |||
35 | public function setPartyIdentification(PartyIdentification $PartyIdentification) { |
||
38 | } |
||
39 | |||
40 | public function getPartyName() { |
||
42 | } |
||
43 | |||
44 | public function setPartyName(PartyName $PartyName) { |
||
50 |