LMongo\Eloquent\Model::offsetSet PHP Méthode

offsetSet() public méthode

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