Passed
Branch master (7c785c)
by Tim
09:09
created
Category
src/Account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     {
19 19
         $url = "account/auth";
20 20
 
21
-        return static::staticRequest('POST', $url, ['code' => $authCode]);
21
+        return static::staticRequest('POST', $url, [ 'code' => $authCode ]);
22 22
     }
23 23
 
24 24
     public static function details(string $id)
Please login to merge, or discard this patch.
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/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.