/**
  * @param int $offset
  * @param mixed $value
  * @return void
  */
 public function offsetSet($offset, $value)
 {
     $result = $this->object->offsetSet($offset, $value);
     return $result === $this->object ? $this : $result;
 }