CaseInsensitiveDictionary::offsetUnset( $offset )
Source
File: wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php
public function offsetUnset($offset) {
if (is_string($offset)) {
$offset = strtolower($offset);
}
unset($this->data[$offset]);
}