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
Push — development ( ac02f6...17a2df )
by Dirk
03:10
created
src/Pinterest/Auth/PinterestOAuth.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace DirkGroenen\Pinterest\Transport;
12 12
 
13 13
 use DirkGroenen\Pinterest\Utils\CurlBuilder;
14
-use DirkGroenen\Pinterest\Exceptions\PinterestException;
15 14
 
16 15
 class Response {
17 16
 
Please login to merge, or discard this patch.
demo/boot.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,11 +15,9 @@
 block discarded – undo
15 15
         $pinterest->auth->setOAuthToken($token->access_token);
16 16
 
17 17
         setcookie("access_token", $token->access_token);
18
-    }
19
-    else if (isset($_GET["access_token"])) {
18
+    } else if (isset($_GET["access_token"])) {
20 19
         $pinterest->auth->setOAuthToken($_GET["access_token"]);
21
-    }
22
-    else if (isset($_COOKIE["access_token"])) {
20
+    } else if (isset($_COOKIE["access_token"])) {
23 21
         $pinterest->auth->setOAuthToken($_COOKIE["access_token"]);
24 22
     }
25 23
 
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 \DirkGroenen\Pinterest\Transport\Response) {
53
+        } else if ($modeldata instanceof \DirkGroenen\Pinterest\Transport\Response) {
55 54
             $this->fill($modeldata->data);
56 55
         }
57 56
     }
Please login to merge, or discard this patch.
src/Pinterest/Endpoints/Pins.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
             if (class_exists("\CURLFile")) {
60 60
                 $data["image"] = new \CURLFile($data['image']);
61 61
             } else {
62
-                $data["image"] = '@' . $data['image'];
62
+                $data["image"] = '@'.$data['image'];
63 63
             }
64 64
         }
65 65
 
Please login to merge, or discard this patch.
src/Pinterest/Transport/Request.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function delete($endpoint, array $parameters = array())
109 109
     {
110
-        return $this->execute("DELETE", sprintf("%s%s", $this->host, $endpoint) . "/", $parameters);
110
+        return $this->execute("DELETE", sprintf("%s%s", $this->host, $endpoint)."/", $parameters);
111 111
     }
112 112
 
113 113
     /**
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         // Check if the access token needs to be added
156 156
         if ($this->access_token != null) {
157 157
             $headers = array_merge($headers, array(
158
-                "Authorization: Bearer " . $this->access_token,
158
+                "Authorization: Bearer ".$this->access_token,
159 159
                 //"Content-type: application/x-www-form-urlencoded; charset=UTF-8",
160 160
                 "Content-Type:multipart/form-data"
161 161
             ));
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 
214 214
         // Check if we have a valid response
215 215
         if (!$response_data || $ch->hasErrors()) {
216
-            throw new PinterestException('Error: execute() - cURL error: ' . $ch->getErrors(), $ch->getErrorNumber());
216
+            throw new PinterestException('Error: execute() - cURL error: '.$ch->getErrors(), $ch->getErrorNumber());
217 217
         }
218 218
 
219 219
         // Initiate the response
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
         // Check the response code
223 223
         if ($response->getResponseCode() >= 400) {
224
-            throw new PinterestException('Pinterest error (code: ' . $response->getResponseCode() . ') with message: ' . $response->getMessage(), $response->getResponseCode());
224
+            throw new PinterestException('Pinterest error (code: '.$response->getResponseCode().') with message: '.$response->getMessage(), $response->getResponseCode());
225 225
         }
226 226
 
227 227
         // Get headers from last request
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -187,8 +187,7 @@
 block discarded – undo
187 187
 
188 188
                 if (!class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
189 189
                     $ch->setOption(CURLOPT_SAFE_UPLOAD, false);
190
-                }
191
-                elseif (class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
190
+                } elseif (class_exists("\CURLFile") && defined('CURLOPT_SAFE_UPLOAD')) {
192 191
                     $ch->setOption(CURLOPT_SAFE_UPLOAD, true);
193 192
                 }
194 193
 
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("\\DirkGroenen\\Pinterest\\Models\\" . $this->model)) {
70
+        if (!class_exists("\\DirkGroenen\\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("\\DirkGroenen\\Pinterest\\Models\\" . $this->model);
119
+            $class = new \ReflectionClass("\\DirkGroenen\\Pinterest\\Models\\".$this->model);
120 120
             $modelcollection[] = $class->newInstanceArgs([$this->master, $item]);
121 121
         }
122 122
 
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
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     public function __get($endpoint)
77 77
     {
78 78
         $endpoint = strtolower($endpoint);
79
-        $class = "\\DirkGroenen\\Pinterest\\Endpoints\\" . ucfirst($endpoint);
79
+        $class = "\\DirkGroenen\\Pinterest\\Endpoints\\".ucfirst($endpoint);
80 80
 
81 81
         // Check if an instance has already been initiated
82 82
         if (!isset($this->cachedEndpoints[$endpoint])) {
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 = 'DirkGroenen\\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.