Skip to content

Commit

Permalink
Merge pull request #3 from ymaerschalck/master
Browse files Browse the repository at this point in the history
update base_url
  • Loading branch information
ymaerschalck authored May 31, 2018
2 parents f8fc59d + 0c85cbe commit fb94281
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Services/IMSProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function prepareLaunchRequest(array $extraParameters = array())
{
$parameters = array_merge($this->parameters, $extraParameters);

$oauthRequest = new OauthRequest($parameters, $this->config['url'], $this->config['baseUrl'], $this->config['key'], $this->config['secret']);
$oauthRequest = new OauthRequest($parameters, $this->config['url'], $this->config['base_url'], $this->config['key'], $this->config['secret']);
$oauthRequest->signRequest();

return $oauthRequest;
Expand Down Expand Up @@ -75,6 +75,7 @@ public function configureOptions(OptionsResolver $resolver)
'secret',
'key',
'url',
'base_url'
));
}
}

0 comments on commit fb94281

Please sign in to comment.