From f9ab1c91e76e50280c3f92aadd28dd582c610291 Mon Sep 17 00:00:00 2001 From: Raza Mehdi Date: Thu, 27 Oct 2016 00:26:55 +0500 Subject: [PATCH] Applied fixes from StyleCI (#55) --- src/Services/AdaptivePayments.php | 2 +- src/Traits/PayPalRequest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); }