OpenPGP_Message::offsetSet PHP Method

offsetSet() public method

public offsetSet ( $offset, $value )
    function offsetSet($offset, $value)
    {
        return is_null($offset) ? $this->packets[] = $value : ($this->packets[$offset] = $value);
    }