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 — master ( c67f54...bcbadd )
by Zordius
03:54
created
src/Validator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -740,7 +740,7 @@
 block discarded – undo
740 740
      * @param array<string,array|string|integer> $context Current context of compiler progress.
741 741
      * @param string $name helper name
742 742
      *
743
-     * @return string|null $content helper function name or callable
743
+     * @return boolean|null $content helper function name or callable
744 744
      */
745 745
     public static function resolveHelper(&$context, &$name) {
746 746
         if (isset($context['helpers'][$name])) {
Please login to merge, or discard this patch.
src/Compiler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
      * @param array<string,array|string|integer> $context current compile context
201 201
      * @param array<boolean|integer|string|array> $vars parsed arguments list
202 202
      *
203
-     * @return array<string> code representing passed expression
203
+     * @return string[] code representing passed expression
204 204
      */
205 205
     public static function compileSubExpression(&$context, $vars) {
206 206
         $ret = static::customHelper($context, $vars, true, true, true);
Please login to merge, or discard this patch.
src/Partial.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
      *
177 177
      * @param array<string,array|string|integer> $context Current context of compiler progress.
178 178
      * @param string $template template string
179
-     * @param string|integer $name partial name or 0
179
+     * @param integer $name partial name or 0
180 180
      *
181 181
      * @return string $code compiled PHP code
182 182
      */
Please login to merge, or discard this patch.
src/Encoder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * Get html encoded string
88 88
      *
89 89
      * @param array<string,array|string|integer> $cx render time context
90
-     * @param array<array|string|integer>|string|integer|null $var value to be htmlencoded
90
+     * @param string $var value to be htmlencoded
91 91
      *
92 92
      * @return string The htmlencoded value of the specified variable
93 93
      *
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      * LightnCandy runtime method for {{var}} , and deal with single quote to same as handlebars.js .
104 104
      *
105 105
      * @param array<string,array|string|integer> $cx render time context
106
-     * @param array<array|string|integer>|string|integer|null $var value to be htmlencoded
106
+     * @param string $var value to be htmlencoded
107 107
      *
108 108
      * @return string The htmlencoded value of the specified variable
109 109
      *
Please login to merge, or discard this patch.