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