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 ( 869bac...4a2061 )
by Asao
01:27
created
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/Paginate/Page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
     public function __construct($key, $currPage, $page)
31 31
     {
32 32
         $this->pagerKey = $key;
33
-        $this->currPage = (int) $currPage;
34
-        $this->page = (int) $page;
33
+        $this->currPage = (int)$currPage;
34
+        $this->page = (int)$page;
35 35
     }
36 36
 
37 37
     /**
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function isCurrent($true = true, $false = false)
51 51
     {
52 52
         return $this->currPage === $this->page 
53
-            ? $true: $false;
53
+            ? $true : $false;
54 54
     }
55 55
 
56 56
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public function isDisabled($true = true, $false = false)
62 62
     {
63 63
         return !$this->page
64
-            ? $true: $false;
64
+            ? $true : $false;
65 65
     }
66 66
 
67 67
     /**
Please login to merge, or discard this patch.