Asvae\ApiTester\Entities\BaseEntity::offsetSet PHP Method

offsetSet() public method

Offset to set.
public offsetSet ( mixed $offset, mixed $value ) : void
$offset mixed The offset to assign the value to.
$value mixed The value to set.
return void
    public function offsetSet($offset, $value)
    {
        $this->attributes[$offset] = $value;
    }