Bolt\Legacy\Content::offsetUnset PHP Method

offsetUnset() public method

ArrayAccess support.
public offsetUnset ( string $offset )
$offset string
    public function offsetUnset($offset)
    {
        if (isset($this->values[$offset])) {
            unset($this->values[$offset]);
        }
    }