Jar::offsetSet( $offset, $value )
Source
File: wp-includes/Requests/src/Cookie/Jar.php
public function offsetSet($offset, $value) {
if ($offset === null) {
throw new Exception('Object is a dictionary, not a list', 'invalidset');
}
$this->cookies[$offset] = $value;
}