GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#115)
by
unknown
124:04 queued 113:34
created
src/Pinterest/Transport/Request.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function delete($endpoint, array $parameters = array())
123 123
     {
124
-        return $this->execute("DELETE", sprintf("%s%s", $this->host, $endpoint) . "/", $parameters);
124
+        return $this->execute("DELETE", sprintf("%s%s", $this->host, $endpoint)."/", $parameters);
125 125
     }
126 126
 
127 127
     /**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         // Check if the access token needs to be added
172 172
         if ($this->access_token != null) {
173 173
             $headers = array_merge($headers, array(
174
-                "Authorization: Bearer " . $this->access_token,
174
+                "Authorization: Bearer ".$this->access_token,
175 175
             ));
176 176
         }
177 177
 
@@ -234,8 +234,8 @@  discard block
 block discarded – undo
234 234
         if ($response_data === false && !$ch->hasErrors()) {
235 235
             throw new CurlException("Error: Curl request failed");
236 236
         }
237
-        else if($ch->hasErrors()) {
238
-            throw new PinterestException('Error: execute() - cURL error: ' . $ch->getErrors(), $ch->getErrorNumber());
237
+        else if ($ch->hasErrors()) {
238
+            throw new PinterestException('Error: execute() - cURL error: '.$ch->getErrors(), $ch->getErrorNumber());
239 239
         }
240 240
 
241 241
         // Initiate the response
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         // Check the response code
245 245
         if ($response->getResponseCode() >= 400) {
246
-            throw new PinterestException('Pinterest error (code: ' . $response->getResponseCode() . ') with message: ' . (is_array($response->getMessage()) ? implode(' ', $response->getMessage()) : $response->getMessage()), $response->getResponseCode());
246
+            throw new PinterestException('Pinterest error (code: '.$response->getResponseCode().') with message: '.(is_array($response->getMessage()) ? implode(' ', $response->getMessage()) : $response->getMessage()), $response->getResponseCode());
247 247
         }
248 248
 
249 249
         // Get headers from last request
Please login to merge, or discard this patch.
src/Pinterest/Pinterest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     public function __get($endpoint)
78 78
     {
79 79
         $endpoint = strtolower($endpoint);
80
-        $class = "\\5baddi\\Pinterest\\Endpoints\\" . ucfirst($endpoint);
80
+        $class = "\\5baddi\\Pinterest\\Endpoints\\".ucfirst($endpoint);
81 81
 
82 82
         // Check if an instance has already been initiated
83 83
         if (!isset($this->cachedEndpoints[$endpoint])) {
Please login to merge, or discard this patch.
src/Pinterest/Models/Model.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@
 block discarded – undo
50 50
         // Fill the model
51 51
         if (is_array($modeldata)) {
52 52
             $this->fill($modeldata);
53
-        }
54
-        else if ($modeldata instanceof \5baddi\Pinterest\Transport\Response) {
53
+        } else if ($modeldata instanceof \5baddi\Pinterest\Transport\Response) {
55 54
             $this->fill($modeldata->data);
56 55
         }
57 56
     }
Please login to merge, or discard this patch.
src/Pinterest/Models/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         // Create class path
68 68
         $this->model = ucfirst(strtolower($model));
69 69
 
70
-        if (!class_exists("\\5baddi\\Pinterest\\Models\\" . $this->model)) {
70
+        if (!class_exists("\\5baddi\\Pinterest\\Models\\".$this->model)) {
71 71
             throw new InvalidModelException;
72 72
         }
73 73
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         $modelcollection = [];
117 117
 
118 118
         foreach ($items as $item) {
119
-            $class = new \ReflectionClass("\\5baddi\\Pinterest\\Models\\" . $this->model);
119
+            $class = new \ReflectionClass("\\5baddi\\Pinterest\\Models\\".$this->model);
120 120
             $modelcollection[] = $class->newInstanceArgs([$this->master, $item]);
121 121
         }
122 122
 
Please login to merge, or discard this patch.
autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     $prefix = '5baddi\\Pinterest\\';
16 16
 
17 17
     // base directory for the namespace prefix
18
-    $base_dir = __DIR__ . '/src/Pinterest/';
18
+    $base_dir = __DIR__.'/src/Pinterest/';
19 19
 
20 20
     // does the class use the namespace prefix?
21 21
     $len = strlen($prefix);
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     // replace the namespace prefix with the base directory, replace namespace
31 31
     // separators with directory separators in the relative class name, append
32 32
     // with .php
33
-    $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
33
+    $file = $base_dir.str_replace('\\', '/', $relative_class).'.php';
34 34
 
35 35
     // if the file exists, require it
36 36
     if (file_exists($file)) {
Please login to merge, or discard this patch.