Test Setup Failed
Pull Request — master (#34)
by Adam
03:57
created
src/Connector/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
                 if (is_array($object->message)) {
111 111
                     $output = '';
112 112
                     foreach ($object->message as $message) {
113
-                        $output .= $message . PHP_EOL;
113
+                        $output .= $message.PHP_EOL;
114 114
                     }
115 115
                     throw new \Exception($output);
116 116
                 } else {
Please login to merge, or discard this patch.
src/Connector/Connector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 
70 70
         return $this->provider->getAuthenticatedRequest(
71 71
             $verb,
72
-            self::BASE_URI . $path,
72
+            self::BASE_URI.$path,
73 73
             $this->accessToken
74 74
         );
75 75
     }
Please login to merge, or discard this patch.