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
Branch master (8db05d)
by Robert
01:51
created
src/Api/ApiParser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
         ;
49 49
     }
50 50
 
51
+    /**
52
+     * @param string $prefix
53
+     */
51 54
     private function buildMethods(ResponseInterface $response, $prefix): array
52 55
     {
53 56
         $this->crawler->addHtmlContent($response->getBody()->getContents());
Please login to merge, or discard this patch.
src/Utils/AnnotationReader.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -49,16 +49,25 @@
 block discarded – undo
49 49
         return $this->getApi($method)->primary;
50 50
     }
51 51
 
52
+    /**
53
+     * @param \ReflectionMethod $method
54
+     */
52 55
     public function isApi($method): bool
53 56
     {
54 57
         return (bool) $this->getApi($method);
55 58
     }
56 59
 
60
+    /**
61
+     * @param \ReflectionMethod $method
62
+     */
57 63
     public function getDescription($method): string
58 64
     {
59 65
         return $this->docBlockFactory->create($this->getMethod($method))->getSummary();
60 66
     }
61 67
 
68
+    /**
69
+     * @param \ReflectionMethod $method
70
+     */
62 71
     public function getName($method): string
63 72
     {
64 73
         $reflection = $this->getMethod($method);
Please login to merge, or discard this patch.