Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function transform(array $data) |
||
30 | { |
||
31 | foreach ($data as $key => $value) { |
||
32 | $convertedKey = iconv($this->inCharset, $this->outCharset, $key); |
||
33 | $data[$convertedKey] = iconv($this->inCharset, $this->outCharset, $value); |
||
34 | if (strcmp($key, $convertedKey) !== 0) { |
||
35 | unset($data[$key]); |
||
36 | } |
||
37 | } |
||
38 | |||
39 | return $data; |
||
40 | } |
||
41 | } |
||
42 |