Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function __construct(array $data) |
||
39 | { |
||
40 | $this->code = intval($data['CODEREPONSE']); |
||
41 | $this->comment = $data['COMMENTAIRE']; |
||
42 | $this->callNumber = intval($data['NUMAPPEL']); |
||
43 | $this->questionNumber = intval($data['NUMQUESTION']); |
||
44 | $this->transactionNumber = intval($data['NUMTRANS']); |
||
45 | } |
||
46 | |||
87 |