lithium\template\view\adapter\File::offsetUnset PHP Method

offsetUnset() public method

Part of ArrayAccess. unset($file['bar']); $file->offsetUnset('bar');
public offsetUnset ( string $offset ) : void
$offset string Key / variable name to check.
return void
    public function offsetUnset($offset)
    {
        unset($this->_data[$offset]);
    }