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 ( c4aee6...c09989 )
by cao
17:10
created
src/DB/rules/select.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         }
185 185
         if($this->isTheFirst){
186 186
             WhereImpl::where($this->context, 'HAVING', $expr, array_slice(func_get_args(), 1));
187
-        }else{
187
+        } else{
188 188
             WhereImpl::where($this->context, 'AND', $expr, array_slice(func_get_args(), 1));
189 189
         }
190 190
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
         }
274 274
         if($this->isTheFirst){
275 275
             WhereImpl::where($this->context, 'WHERE' ,$conditions, array_slice(func_get_args(), 1));
276
-        }else{
276
+        } else{
277 277
             WhereImpl::where($this->context, 'AND', $conditions, array_slice(func_get_args(), 1));
278 278
         }
279 279
         return new NextWhereRule($this->context, false);
Please login to merge, or discard this patch.
src/DB/rules/basic.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         }
106 106
         if($this->isTheFirst){
107 107
             WhereImpl::where($this->context, 'WHERE' ,$conditions, array_slice(func_get_args(), 1));
108
-        }else{
108
+        } else{
109 109
             WhereImpl::where($this->context, 'AND', $conditions, array_slice(func_get_args(), 1));
110 110
         }
111 111
         return new NextWhereRule($this->context, false);
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         }
171 171
         if($this->isTheFirst){
172 172
             WhereImpl::where($this->context, '', $expr, array_slice(func_get_args(), 1));
173
-        }else{
173
+        } else{
174 174
             WhereImpl::where($this->context, 'AND', $expr, array_slice(func_get_args(), 1));
175 175
         }
176 176
         return new NextScopedQuery($this->context, false);
Please login to merge, or discard this patch.