lithium\util\Collection::offsetUnset()
Unsets an offset.
Parameters
-
string
$offset
The offset to unset.
Source
public function offsetUnset($offset) {
prev($this->_data);
if (key($this->_data) === null) {
$this->rewind();
}
unset($this->_data[$offset]);
}