LMongo\Eloquent\Model::offsetSet PHP Method

offsetSet() public method

Set the value for a given offset.
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed
$value mixed
return void
    public function offsetSet($offset, $value)
    {
        $this->{$offset} = $value;
    }
Model