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