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 — develop ( b223b2...0ce95a )
by Samuel
03:06
created
src/LinusShops/CanadaPost/Services/GetNearestPostOffice.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 use Guzzle\Http\Client;
4 4
 use LinusShops\CanadaPost\Service;
5 5
 /**
6
- * Get the nearest post office
7
- *
8
- * @see https://www.canadapost.ca/cpo/mc/business/productsservices/developers/services/findpostoffice/nearestpostoffice.jsf
9
- * @author Sam Schmidt <[email protected]>
10
- * @since 2015-12-09
11
- * @company Linus Shops
12
- */
6
+     * Get the nearest post office
7
+     *
8
+     * @see https://www.canadapost.ca/cpo/mc/business/productsservices/developers/services/findpostoffice/nearestpostoffice.jsf
9
+     * @author Sam Schmidt <[email protected]>
10
+     * @since 2015-12-09
11
+     * @company Linus Shops
12
+     */
13 13
 
14 14
 class GetNearestPostOffice extends Service
15 15
 {
Please login to merge, or discard this patch.
src/LinusShops/CanadaPost/Exceptions/InvalidRequestException.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 namespace LinusShops\CanadaPost\Services;
3 3
 use LinusShops\CanadaPost\Service;
4 4
 /**
5
- *
6
- *
7
- * @author Sam Schmidt <[email protected]>
8
- * @since 2015-12-09
9
- * @company Linus Shops
10
- */
5
+     *
6
+     *
7
+     * @author Sam Schmidt <[email protected]>
8
+     * @since 2015-12-09
9
+     * @company Linus Shops
10
+     */
11 11
 
12 12
 class GetNearestPostOffice extends Service
13 13
 {
Please login to merge, or discard this patch.
src/LinusShops/CanadaPost/Service.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         return $this;
59 59
     }
60 60
 
61
-    public function getParameter($name, $default=null)
61
+    public function getParameter($name, $default = null)
62 62
     {
63 63
         return $this->hasParameter($name) ?
64 64
             $this->parameters[$name] : $default;
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
         $request = $this->buildRequest();
83 83
 
84 84
         //Apply standard headers
85
-        $this->setHeader('Authorization', 'Basic '.base64_encode(
86
-            $this->userid.':'.$this->password
85
+        $this->setHeader('Authorization', 'Basic ' . base64_encode(
86
+            $this->userid . ':' . $this->password
87 87
         ));
88 88
 
89 89
         $client = new Client(array(
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 require __DIR__ . '/../vendor/autoload.php';
3
-$configfile = __DIR__.'/config.json';
3
+$configfile = __DIR__ . '/config.json';
4 4
 $config = false;
5 5
 if (file_exists($configfile)) {
6
-    $config = json_decode(file_get_contents(__DIR__.'/config.json'), true);
6
+    $config = json_decode(file_get_contents(__DIR__ . '/config.json'), true);
7 7
 }
8 8
 
9 9
 if ($config == false) {
Please login to merge, or discard this patch.