| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 58 | public function offsetSet($offset, $value):void{ |
||
| 59 | |||
| 60 | if($this->sourceEncoding !== null && is_string($value)){ |
||
| 61 | $value = mb_convert_encoding($value, $this->destEncoding, $this->sourceEncoding); |
||
| 62 | } |
||
| 63 | |||
| 64 | $offset !== null |
||
| 65 | ? $this->array[$offset] = $value |
||
| 66 | : $this->array[] = $value; |
||
| 67 | |||
| 71 |