/**
* Unsets an offset.
*
* @param mixed $offset The offset to unset.
*
* @return void
*
* @see ArrayAccess::offsetUnset()
* @since 3.1.4
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->entries[$offset]);
}