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 — master ( 0a4cf0...a02aa7 )
by Dirk
03:57 queued 01:24
created
src/Pinterest/Endpoints/Users.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright 2015 Dirk Groenen
4
- *
5
- * (c) Dirk Groenen <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Copyright 2015 Dirk Groenen
4
+     *
5
+     * (c) Dirk Groenen <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace DirkGroenen\Pinterest\Endpoints;
12 12
 
Please login to merge, or discard this patch.
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.
src/Pinterest/Transport/Request.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright 2015 Dirk Groenen
4
- *
5
- * (c) Dirk Groenen <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Copyright 2015 Dirk Groenen
4
+     *
5
+     * (c) Dirk Groenen <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace DirkGroenen\Pinterest\Endpoints;
12 12
 
Please login to merge, or discard this patch.
src/Pinterest/Endpoints/Boards.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright 2015 Dirk Groenen
4
- *
5
- * (c) Dirk Groenen <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Copyright 2015 Dirk Groenen
4
+     *
5
+     * (c) Dirk Groenen <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace DirkGroenen\Pinterest\Endpoints;
12 12
 
Please login to merge, or discard this patch.
src/Pinterest/Endpoints/Endpoint.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright 2015 Dirk Groenen
4
- *
5
- * (c) Dirk Groenen <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Copyright 2015 Dirk Groenen
4
+     *
5
+     * (c) Dirk Groenen <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace DirkGroenen\Pinterest\Endpoints;
12 12
 
Please login to merge, or discard this patch.
src/Pinterest/Endpoints/Pins.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Copyright 2015 Dirk Groenen
4
- *
5
- * (c) Dirk Groenen <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Copyright 2015 Dirk Groenen
4
+     *
5
+     * (c) Dirk Groenen <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 
11 11
 namespace DirkGroenen\Pinterest\Endpoints;
12 12
 
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.