Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function offsetSet($offset, $value) { |
||
48 | if (!$value instanceof ThreadHandler) { |
||
49 | throw new InvalidArgumentException("value must be instance of ThreadHandler."); |
||
50 | } |
||
51 | |||
52 | if (is_null($offset)) { |
||
53 | $this->array[] = $value; |
||
54 | } else { |
||
55 | $this->array[$offset] = $value; |
||
56 | } |
||
57 | } |
||
58 | |||
63 |