Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
71 | public function offsetSet($offset, $value){ |
||
72 | |||
73 | $value = !is_null($this->sourceEncoding) |
||
74 | ? mb_convert_encoding($value, $this->destEncoding, $this->sourceEncoding) |
||
75 | : $value; |
||
76 | |||
77 | if(is_null($offset)){ |
||
78 | $this->array[] = $value; // @codeCoverageIgnore |
||
79 | } |
||
80 | else{ |
||
81 | $this->array[$offset] = $value; |
||
82 | } |
||
83 | |||
84 | } |
||
85 | |||
87 |