Skip to content

Commit

Permalink
Fix incorrect param list
Browse files Browse the repository at this point in the history
  • Loading branch information
jdabrowa committed Jan 31, 2019
1 parent d36520d commit b2a54d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SourcesService.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function update($id, array $source, array $options = array())
{
$attributes = array_intersect_key($source, array_flip(self::$keysToPersist));

list($code, $updatedSource) = $this->httpClient->put("/sources/{$id}", $attributes, null, $options);
list($code, $updatedSource) = $this->httpClient->put("/sources/{$id}", $attributes, $options);
return $updatedSource;
}

Expand Down

0 comments on commit b2a54d0

Please sign in to comment.