We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f903ebd commit b8d5ba8Copy full SHA for b8d5ba8
clients/algoliasearch-client-php/lib/RequestOptions/RequestOptionsFactory.php
@@ -71,14 +71,14 @@ private function normalize($options)
71
$headersToLowerCase[mb_strtolower($key)] = $v;
72
}
73
74
- $normalized[$optionName] = $this->format(
+ $normalized[$optionName] += $this->format(
75
$headersToLowerCase
76
);
77
} else {
78
- $normalized[$optionName] = $this->format($value);
+ $normalized[$optionName] += $this->format($value);
79
80
81
- $normalized[$optionName] = $value;
+ $normalized[$optionName] += $value;
82
83
84
0 commit comments