Skip to content

Commit

Permalink
Merge pull request #17 from v1shky/master
Browse files Browse the repository at this point in the history
fix guzzle object to string conversion error
  • Loading branch information
srmklive authored Jun 29, 2016
2 parents b3705f8 + 6692309 commit c8c508c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Traits/PayPalRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private function doPayPalRequest($method, $params)
} catch (BadResponseException $e) {
throw new \Exception($e->getRequest() . " " . $e->getResponse());
} catch (\Exception $e) {
$message = $e->getRequest(). " " . $e->getResponse();
$message = $e->getMessage();
}

return [
Expand Down

0 comments on commit c8c508c

Please sign in to comment.