Skip to content

Commit

Permalink
Fixing order of default params merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
Trent Schmidt committed Jul 11, 2018
1 parent f07df7c commit 2eb91f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private function setDefaults(array $config): array
'timeout' => 0
];

return array_merge($config, $defaults);
return array_merge($defaults, $config);
}

/**
Expand Down

0 comments on commit 2eb91f6

Please sign in to comment.