Passed
Push — master ( 089c86...2cb5b7 )
by Tim
02:19
created
src/ApiResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     public static function buildQueryString($slug, $params = null)
72 72
     {
73 73
         $url = self::endPointUrl($slug);
74
-        if (! empty($params)) {
74
+        if (!empty($params)) {
75 75
             $url .= '?'.http_build_query($params);
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/Util/Util.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         if (null === self::$isMbstringAvailable) {
22 22
             self::$isMbstringAvailable = function_exists('mb_detect_encoding');
23 23
 
24
-            if (! self::$isMbstringAvailable) {
24
+            if (!self::$isMbstringAvailable) {
25 25
                 trigger_error('It looks like the mbstring extension is not enabled. '.
26 26
                     'UTF-8 strings will not properly be encoded. Ask your system '.
27 27
                     'administrator to enable the mbstring extension.', E_USER_WARNING);
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public static function convertArrayToObject($resp)
46 46
     {
47
-        if (! is_array($resp)) {
47
+        if (!is_array($resp)) {
48 48
             $message = 'The response passed must be an array';
49 49
 
50 50
             throw new InvalidArgumentException($message);
Please login to merge, or discard this patch.
src/Flutterwave.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     private static function validateApiKey($apiKey): bool
38 38
     {
39
-        if ($apiKey == '' || ! is_string($apiKey)) {
39
+        if ($apiKey == '' || !is_string($apiKey)) {
40 40
             throw new InvalidArgumentException('Api key must be a string and cannot be empty');
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/ApiOperations/Request.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
     public static function validateParams($params = null, $required = false): void
37 37
     {
38 38
         if ($required) {
39
-            if (empty($params) || ! is_array($params)) {
39
+            if (empty($params) || !is_array($params)) {
40 40
                 $message = 'The parameter passed must be an array and must not be empty';
41 41
 
42 42
                 throw new InvalidArgumentException($message);
43 43
             }
44 44
         }
45
-        if ($params && ! is_array($params)) {
45
+        if ($params && !is_array($params)) {
46 46
             $message = 'The parameter passed must be an array';
47 47
 
48 48
             throw new InvalidArgumentException($message);
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @return array|object (the JSON response as array or object)
62 62
      */
63
-    public static function staticRequest($method, $url, $params = [], $return_type = 'obj')
63
+    public static function staticRequest($method, $url, $params = [ ], $return_type = 'obj')
64 64
     {
65 65
         if ($return_type != 'arr' && $return_type != 'obj') {
66 66
             throw new InvalidArgumentException('Return type can only be obj or arr');
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * @throws IsNullException
102 102
      * @throws ApiErrorException
103 103
      */
104
-    private static function setHttpResponse($method, $url, $body = []): \GuzzleHttp\Psr7\Response
104
+    private static function setHttpResponse($method, $url, $body = [ ]): \GuzzleHttp\Psr7\Response
105 105
     {
106 106
         if (is_null($method)) {
107 107
             throw new IsNullException('Empty method not allowed');
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
 
112 112
         try {
113 113
             static::$response = static::$client->{strtolower($method)}(
114
-                Flutterwave::$apiBase . '/' . $url,
115
-                ['body' => json_encode($body)]
114
+                Flutterwave::$apiBase.'/'.$url,
115
+                [ 'body' => json_encode($body) ]
116 116
             );
117 117
 
118 118
             return static::$response;
@@ -138,6 +138,6 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private static function getResponseData(): array
140 140
     {
141
-        return json_decode(static::$response->getBody(), true)['data'];
141
+        return json_decode(static::$response->getBody(), true)[ 'data' ];
142 142
     }
143 143
 }
Please login to merge, or discard this patch.
src/ApiOperations/All.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     {
14 14
         self::validateParams($params);
15 15
         $url = static::classUrl();
16
-        if (! empty($params)) {
16
+        if (!empty($params)) {
17 17
             $url .= '?'.http_build_query($params);
18 18
         }
19 19
 
Please login to merge, or discard this patch.