| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function fromCsvArray(array $data) |
||
| 58 | { |
||
| 59 | $this->identifier = (int) $data['Identifier']; |
||
| 60 | $this->sourceString = $data['SourceString']; |
||
| 61 | $this->comment = $data['Comment']; |
||
| 62 | $this->de = $data['DE']; |
||
| 63 | $this->fr = $data['FR']; |
||
| 64 | $this->nl = $data['NL']; |
||
| 65 | $this->es = $data['ES']; |
||
| 66 | $this->pl = $data['PL']; |
||
| 67 | $this->it = $data['IT']; |
||
| 68 | $this->ru = $data['RU']; |
||
| 69 | |||
| 70 | return $this; |
||
| 71 | } |
||
| 72 | |||
| 78 |