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 (#73)
by Tomasz
01:45
created
src/Processor/Processor.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -128,6 +128,9 @@  discard block
 block discarded – undo
128 128
         return $text;
129 129
     }
130 130
 
131
+    /**
132
+     * @param callable|null $handler
133
+     */
131 134
     private function processHandler(ParsedShortcodeInterface $parsed, ProcessorContext $context, $handler)
132 135
     {
133 136
         $processed = ProcessedShortcode::createFromContext(clone $context);
@@ -145,6 +148,9 @@  discard block
 block discarded – undo
145 148
         return mb_substr($state, 0, $offset, 'utf-8').$processed->getContent().mb_substr($state, $offset + $length, mb_strlen($state, 'utf-8'), 'utf-8');
146 149
     }
147 150
 
151
+    /**
152
+     * @return string
153
+     */
148 154
     private function processRecursion(ProcessedShortcode $shortcode, ProcessorContext $context)
149 155
     {
150 156
         if ($this->autoProcessContent && null !== $shortcode->getContent()) {
Please login to merge, or discard this patch.