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 ( 289dfb...4e4c70 )
by Asao
03:26 queued 01:37
created
src/Pager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                 $this->pagerKey => 1,
71 71
                 $this->limitKey => 20
72 72
             ];
73
-        $this->inputObject   = $inputObject;
73
+        $this->inputObject = $inputObject;
74 74
     }
75 75
 
76 76
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     public static function forge($name = '', array $default = [], $inputObject = null)
83 83
     {
84 84
         $self = new self($default, $inputObject);
85
-        $self->name = $name ?: 'pager-' . $name;
85
+        $self->name = $name ?: 'pager-'.$name;
86 86
         
87 87
         return $self;
88 88
     }
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     private function secureInput(array $query)
159 159
     {
160
-        $secure = $this->validator ?: function (&$v) {
160
+        $secure = $this->validator ?: function(&$v) {
161 161
             if (!is_string($v) && !is_numeric($v)) {
162 162
                 $v = '';
163 163
             } elseif (strpos($v, "\0") !== false) {
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     private function setSessionName($pathInfo)
209 209
     {
210 210
         $this->path = $pathInfo;
211
-        $this->name = $this->name ?: 'pager-' . md5($pathInfo);
211
+        $this->name = $this->name ?: 'pager-'.md5($pathInfo);
212 212
     }
213 213
 
214 214
     /**
Please login to merge, or discard this patch.