| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function __construct(array $data) |
||
| 44 | { |
||
| 45 | $this->id = (int) $data['id']; |
||
| 46 | $this->firstName = (string) $data['firstName']; |
||
| 47 | $this->lastName = (string) $data['lastName']; |
||
| 48 | $this->email = (string) $data['email']; |
||
| 49 | $this->companyId = !empty($data['company']) ? (int) $data['company'] : null; |
||
| 50 | } |
||
| 51 | |||
| 92 |