diff --git a/src/Services/AdaptivePayments.php b/src/Services/AdaptivePayments.php index 830d0805..fd5e7432 100644 --- a/src/Services/AdaptivePayments.php +++ b/src/Services/AdaptivePayments.php @@ -196,7 +196,7 @@ private function doPayPalRequest($method, $params) } // Merge $options array if set. - if(!empty($this->options)) { + if (!empty($this->options)) { $post = array_merge($post, $this->options); } diff --git a/src/Traits/PayPalRequest.php b/src/Traits/PayPalRequest.php index 4fa12e82..52dfc600 100644 --- a/src/Traits/PayPalRequest.php +++ b/src/Traits/PayPalRequest.php @@ -267,7 +267,7 @@ private function doPayPalRequest($method, $params) } // Merge $options array if set. - if(!empty($this->options)) { + if (!empty($this->options)) { $post = array_merge($post, $this->options); }