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 ( bc3c30...d86446 )
by Samuel
04:01
created
src/LinusShops/CanadaPost/Service.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         return $this;
56 56
     }
57 57
 
58
-    public function getParameter($name, $default=null)
58
+    public function getParameter($name, $default = null)
59 59
     {
60 60
         return $this->hasParameter($name) ?
61 61
             $this->parameters[$name] : $default;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         //Apply standard header defaults
82 82
         $request->addHeader('Accept-language', 'en-CA');
83 83
         $request->addHeader('Authorization', base64_encode(
84
-            $this->userid.':'.$this->password
84
+            $this->userid . ':' . $this->password
85 85
         ));
86 86
 
87 87
         //Apply custom headers (with possible overwrite)
Please login to merge, or discard this patch.
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.