| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 9 | public function __construct($data) | ||
| 10 |     { | ||
| 11 | $this->name = $data['name']; | ||
| 12 | $this->surname = $data['surname']; | ||
| 13 | $this->gender = $data['gender']; | ||
| 14 | $this->birthDate = $data['birthDate']; | ||
| 15 | $this->belfioreCode = $data['belfioreCode']; | ||
| 16 | $this->omocodiaLevel = $data['omocodiaLevel'] ?? ''; | ||
| 17 | $this->codiceFiscale = $data['codiceFiscale'] ?? ''; | ||
| 18 | } | ||
| 19 | |||
| 70 |