Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function __construct(array $data) |
||
44 | { |
||
45 | $this->id = (int) $data['id']; |
||
46 | $this->name = (string) $data['name']; |
||
47 | $this->phoneDid = (string) $data['phoneDid']; |
||
48 | $this->phoneDestination = (string) $data['phoneDestination']; |
||
49 | $this->callerId = (bool) $data['callerId']; |
||
50 | } |
||
51 | |||
92 |