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 ( 8e7c85...54309e )
by François
02:16
created
src/fkooman/RemoteStorage/Path.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
     /** @var array */
27 27
     private $pathParts;
28 28
 
29
+    /**
30
+     * @param string $p
31
+     */
29 32
     public function __construct($p)
30 33
     {
31 34
         if (!is_string($p)) {
Please login to merge, or discard this patch.
src/fkooman/RemoteStorage/RemoteStorageClientStorage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         return new Client($clientId, $responseType, $redirectUri, $scope, null);
30 30
     }
31 31
 
32
+    /**
33
+     * @param string|null $redirectUri
34
+     */
32 35
     private static function normalizeRedirectUriOrigin($redirectUri)
33 36
     {
34 37
         $scheme = strtolower(parse_url($redirectUri, PHP_URL_SCHEME));
Please login to merge, or discard this patch.
src/fkooman/RemoteStorage/RemoteStorageService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -186,6 +186,9 @@
 block discarded – undo
186 186
         );
187 187
     }
188 188
 
189
+    /**
190
+     * @param null|TokenInfo $tokenInfo
191
+     */
189 192
     public function getObject(Request $request, $tokenInfo)
190 193
     {
191 194
         $path = new Path($request->getUrl()->getPathInfo());
Please login to merge, or discard this patch.