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
Pull Request — master (#32)
by Tomasz
02:16
created
src/Processor/Processor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -121,6 +121,9 @@
 block discarded – undo
121 121
         $context->textContent = $shortcode->getContent();
122 122
     }
123 123
 
124
+    /**
125
+     * @param callable|null $handler
126
+     */
124 127
     private function processHandler(ParsedShortcodeInterface $parsed, ProcessorContext $context, $handler)
125 128
     {
126 129
         $processed = ProcessedShortcode::createFromContext(clone $context);
Please login to merge, or discard this patch.
src/Shortcode/ReplacedShortcode.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
         return $this->replacement;
26 26
     }
27 27
 
28
+    /**
29
+     * @return string
30
+     */
28 31
     public function getText()
29 32
     {
30 33
         return $this->text;
Please login to merge, or discard this patch.