| Total Complexity | 1 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class Company |
||
| 17 | { |
||
| 18 | public string $uuid; |
||
| 19 | public string $name; |
||
| 20 | public string $address; |
||
| 21 | public string $zipCode; |
||
| 22 | public string $town; |
||
| 23 | public string $country; |
||
| 24 | public string $phone; |
||
| 25 | public string $facsimile; |
||
| 26 | public string $email; |
||
| 27 | public string $contact; |
||
| 28 | public string $cellphone; |
||
| 29 | public string $slug; |
||
| 30 | |||
| 31 | public function __construct( |
||
| 59 |