'headers' =>
[ 'Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8',
],
],
$defaults);
$this->
assertContains('Content-Type: application/x-www-form-urlencoded; charset=utf-8',
$options['headers'
]);
} public function testNormalizeBodyMultipart() { $file =
fopen('php://memory', 'r+'
);
stream_context_set_option($file,
['http' =>
[ 'filename' => 'test.txt',
'content_type' => 'text/plain',
]]);
fwrite($file, 'foobarbaz'
);
rewind($file);
$headers =
[ 'content-type' =>
['Content-Type: multipart/form-data; boundary=ABCDEF'
],
];
$body =
[ 'foo[]' => 'bar',