Skip to content

Commit

Permalink
Merge pull request #115 from primsi/issue-114-remove-wrong-defaults
Browse files Browse the repository at this point in the history
Issue: 114: remove leftover defaults from MailchimpApiUser::request.
  • Loading branch information
aprice42 authored Mar 16, 2023
2 parents 761703c + 2cd2871 commit 5198f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MailchimpApiUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function hasApiAccess() {
* @throws MailchimpAPIException
*/
public function request($method, $path, $tokens = NULL, $parameters = [], $batch = FALSE, $returnAssoc = FALSE) {
return $this->api_class->request($method, $path, $tokens = NULL, $parameters = [], $batch = FALSE, $returnAssoc = FALSE);
return $this->api_class->request($method, $path, $tokens, $parameters, $batch, $returnAssoc);
}

}

0 comments on commit 5198f88

Please sign in to comment.