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