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