Passed
Push — master ( 001f9d...c5d9bb )
by
unknown
10:15 queued 08:40
created
src/ApiResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     public static function buildQueryString($slug, $params = null)
51 51
     {
52 52
         $url = self::endPointUrl($slug);
53
-        if (! empty($params)) {
53
+        if ( ! empty($params)) {
54 54
             $url .= '?'.http_build_query($params);
55 55
         }
56 56
 
Please login to merge, or discard this patch.
src/ApiOperations/Request.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -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
-                Mono::$apiBaseUrl . '/' . $url,
115
-                ['body' => json_encode($body)]
114
+                Mono::$apiBaseUrl.'/'.$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.
src/Util/Util.php 1 patch
Spacing   +4 added lines, -4 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);
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
     public static function validateData(array $expectedKeys, array $data)
73 73
     {
74 74
         //check if array keys are empty
75
-        if (! array_filter($data)) {
75
+        if ( ! array_filter($data)) {
76 76
             throw new \Digikraaft\Mono\Exceptions\InvalidArgumentException("Please check that all required keys are present and not null");
77 77
         }
78
-        if (! self::in_array_all(
78
+        if ( ! self::in_array_all(
79 79
             $expectedKeys,
80 80
             $data
81 81
         )) {
Please login to merge, or discard this patch.
src/Account.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         $url = "account/auth";
22 22
 
23
-        return static::staticRequest('POST', $url, ['code' => $authCode]);
23
+        return static::staticRequest('POST', $url, [ 'code' => $authCode ]);
24 24
     }
25 25
 
26 26
     /**
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public static function fetchStatement(string $accountId, array $filters)
50 50
     {
51
-        Util::validateData(['period'], $filters);
51
+        Util::validateData([ 'period' ], $filters);
52 52
         $url = static::buildQueryString("{$accountId}/statement", $filters);
53 53
 
54 54
         return static::staticRequest('GET', $url);
Please login to merge, or discard this patch.