Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class Invoice { |
||
24 | /** |
||
25 | * Invoice number. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | public $invoiceno; |
||
30 | |||
31 | /** |
||
32 | * Document ID. |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | public $documentid; |
||
37 | |||
38 | /** |
||
39 | * Create an string representation of this object |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | public function __toString() { |
||
53 |