Skip to content

Commit

Permalink
Apply fixes from StyleCI (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
srmklive committed Jul 17, 2018
1 parent ef8faf4 commit 0319e53
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Traits/PayPalRequest.php
Expand Up @@ -344,7 +344,7 @@ public function verifyIPN($post)
{
$this->setRequestData($post);

$this->apiUrl = $this->config['gateway_url'] . '/cgi-bin/webscr';
$this->apiUrl = $this->config['gateway_url'].'/cgi-bin/webscr';

return $this->doPayPalRequest('verifyipn');
}
Expand All @@ -357,11 +357,11 @@ public function verifyIPN($post)
private function createRequestPayload($method)
{
$config = array_merge([
'USER' => $this->config['username'],
'PWD' => $this->config['password'],
'USER' => $this->config['username'],
'PWD' => $this->config['password'],
'SIGNATURE' => $this->config['signature'],
'VERSION' => 123,
'METHOD' => $method,
'VERSION' => 123,
'METHOD' => $method,
], $this->options);

$this->post = $this->post->merge($config);
Expand Down

0 comments on commit 0319e53

Please sign in to comment.