lithium\template\view\adapter\File::offsetUnset PHP Метод

offsetUnset() публичный Метод

Part of ArrayAccess. unset($file['bar']); $file->offsetUnset('bar');
public offsetUnset ( string $offset ) : void
$offset string Key / variable name to check.
Результат void
    public function offsetUnset($offset)
    {
        unset($this->_data[$offset]);
    }