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 ( 5cf04a...7a5848 )
by Asao
01:37
created
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.
src/Inputs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             return $this->path;
186 186
         }
187 187
         $page = (int)$page;
188
-        return $this->path . '?' . $this->pagerKey . '=' . $page;
188
+        return $this->path.'?'.$this->pagerKey.'='.$page;
189 189
     }
190 190
 
191 191
     /**
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     {
204 204
         $class = $this->defaultToHtml;
205 205
         $toHtml = new $class(Paginate::forge($this));
206
-        return (string) $toHtml;
206
+        return (string)$toHtml;
207 207
     }
208 208
 
209 209
     /**
Please login to merge, or discard this patch.