| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class InvoiceDocumentReference extends BaseComponent { |
||
| 16 | |||
| 17 | protected $ID; |
||
| 18 | protected $DocumentTypeCode; |
||
| 19 | |||
| 20 | function xmlSerialize(Writer $writer) { |
||
| 21 | $writer->write([ |
||
| 22 | SchemaNS::CBC . 'ID' => $this->ID, |
||
| 23 | SchemaNS::CBC . 'DocumentTypeCode' => $this->DocumentTypeCode |
||
| 24 | ]); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getID() { |
||
| 28 | return $this->ID; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function setID($ID) { |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getDocumentTypeCode() { |
||
| 37 | return $this->DocumentTypeCode; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function setDocumentTypeCode($DocumentTypeCode) { |
||
| 43 | } |
||
| 44 | |||
| 46 |