/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Api/Serializer
Edit: /home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Api/Serializer/RestJsonSerializer.php (1136B)
contentType = JsonBody::getContentType($api);
$this->jsonFormatter = $jsonFormatter ?: new JsonBody($api);
}
protected function payload(StructureShape $member, array $value, array &$opts)
{
$body = isset($value) ?
((string) $this->jsonFormatter->build($member, $value))
: "{}";
$opts['headers']['Content-Type'] = $this->contentType;
$opts['body'] = $body;
}
}