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 ( 270109...cd43c0 )
by Asao
01:26
created
src/Pager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      *
107 107
      * @API
108 108
      * @param array $query query like $_GET
109
-     * @param null  $path  path info
109
+     * @param string  $path  path info
110 110
      * @return Pager
111 111
      */
112 112
     public function withQuery(array $query, $path = null)
Please login to merge, or discard this patch.
src/ToHtml/ToBootstrap3.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
         return "<li><a href=\"{$href}\" >{$label}{$only}</a></li>\n";
79 79
     }
80 80
     
81
+    /**
82
+     * @param string $label
83
+     */
81 84
     private function liLabel(Page $p, $label)
82 85
     {
83 86
         return "<li class=\"{$p->isCurrent('disabled')}\"><a href=\"{$p->isCurrent('#', $p->getUrl())}\" >{$label}</a></li>\n";
Please login to merge, or discard this patch.
src/ToHtml/ToBootstrap4.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
         return "<li class='page-item'><a class='page-link' href=\"{$href}\" >{$label}{$only}</a></li>\n";
79 79
     }
80 80
     
81
+    /**
82
+     * @param string $label
83
+     */
81 84
     private function liLabel(Page $p, $label)
82 85
     {
83 86
         return "<li class=\"{$p->isCurrent('disabled')}\"><a class='page-link' href=\"{$p->isCurrent('#', $p->getUrl())}\" >{$label}</a></li>\n";
Please login to merge, or discard this patch.