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 ( 738a13...f7bbd2 )
by Zordius
03:02
created
src/Validator.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -454,9 +454,9 @@  discard block
 block discarded – undo
454 454
      *
455 455
      * @param array<string,array|string|integer> $context current compile context
456 456
      * @param array<boolean|integer|string|array> $vars parsed arguments list
457
-     * @param string|null $matchop should also match to this operator
457
+     * @param string $match should also match to this operator
458 458
      *
459
-     * @return boolean Return true
459
+     * @return null|boolean Return true
460 460
      */
461 461
     protected static function blockEnd(&$context, &$vars, $match = null) {
462 462
         $context['level']--;
@@ -678,7 +678,7 @@  discard block
 block discarded – undo
678 678
      * @param array<string,array|string|integer> $context current compile context
679 679
      * @param array<boolean|integer|string|array> $vars parsed arguments list
680 680
      *
681
-     * @return boolean Return true when it is custom helper
681
+     * @return boolean|null Return true when it is custom helper
682 682
      */
683 683
     public static function lookup(&$context, $vars) {
684 684
         if (isset($vars[0][0]) && ($vars[0][0] === 'lookup')) {
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
      * @param array<string,array|string|integer> $context current compile context
743 743
      * @param array<boolean|integer|string|array> $vars parsed arguments list
744 744
      *
745
-     * @return boolean Return true always
745
+     * @return boolean|null Return true always
746 746
      */
747 747
     protected static function inline(&$context, $vars) {
748 748
         if (!$context['flags']['runpart']) {
Please login to merge, or discard this patch.