Skip to content

Commit

Permalink
Mixed up credentials with multi-website? #157
Browse files Browse the repository at this point in the history
  • Loading branch information
Volodymyr Klymenko committed Mar 8, 2023
1 parent d4c5228 commit fb3c218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gateway/Request/BuilderComposite.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function build(array $buildSubject)
{
$result = $buildSubject;
foreach ($this->builders as $builder) {
$result = $this->merge($result, array_merge($buildSubject, $builder->build($result)));
$result = $this->merge($result, $builder->build($result));
}

return $result;
Expand Down

0 comments on commit fb3c218

Please sign in to comment.