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 — v0.89-develop ( 4347a7...178f3d )
by Zordius
02:13
created
src/Validator.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @param array<string,array|string|integer> $context current compile context
214 214
      * @param array<boolean|integer|string|array> $vars parsed arguments list
215 215
      *
216
-     * @return boolean Return true when inline partial ends
216
+     * @return boolean|null Return true when inline partial ends
217 217
      */
218 218
     protected static function inlinePartial(&$context, $vars) {
219 219
         if (count($context['inlinepartial']) > 0) {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      * @param array<string,array|string|integer> $context current compile context
247 247
      * @param array<boolean|integer|string|array> $vars parsed arguments list
248 248
      *
249
-     * @return boolean Return true always
249
+     * @return boolean|null Return true always
250 250
      */
251 251
     protected static function partialBlock(&$context, $vars) {
252 252
         if (count($context['partialblock']) > 0) {
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
      * @param array<string,array|string|integer> $context current compile context
621 621
      * @param array<boolean|integer|string|array> $vars parsed arguments list
622 622
      *
623
-     * @return boolean Return true when it is custom helper
623
+     * @return boolean|null Return true when it is custom helper
624 624
      */
625 625
     public static function lookup(&$context, $vars) {
626 626
         if (isset($vars[0][0]) && ($vars[0][0] === 'lookup')) {
@@ -684,7 +684,7 @@  discard block
 block discarded – undo
684 684
      * @param array<string,array|string|integer> $context current compile context
685 685
      * @param array<boolean|integer|string|array> $vars parsed arguments list
686 686
      *
687
-     * @return boolean Return true always
687
+     * @return boolean|null Return true always
688 688
      */
689 689
     protected static function inline(&$context, $vars) {
690 690
         if (!$context['flags']['runpart']) {
Please login to merge, or discard this patch.