Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Trustly/Api/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public function post($url=NULL, $postdata=NULL) {
/**
* Return a properly formed url to communicate with this API.
*
* @return URL pointing to the API peer.
* @return string URL pointing to the API peer.
*/
public function baseURL() {
if($this->api_is_https) {
Expand All @@ -394,7 +394,7 @@ public function baseURL() {
*
* @param Trustly_Data_Request $request Data to send in the request
*
* @return URL to the API peer with the given query path.
* @return string URL to the API peer with the given query path.
*/
public function url($request=NULL) {
return $this->baseURL() . $this->urlPath($request);
Expand Down