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 ( d96e23...3d7113 )
by Brett
03:09
created
src/Audit.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -373,12 +373,12 @@
 block discarded – undo
373 373
 
374 374
         // We now need one more iteration to add core classes to the panels added via the merge, if needed
375 375
         array_walk($this->panels, function(&$value, $key) {
376
-           if (!isset($value['class'])) {
377
-               if (isset($this->_corePanels[$key]))
378
-                   $value = ArrayHelper::merge($value, $this->_corePanels[$key]);
379
-               else
380
-                   throw new InvalidConfigException("Invalid configuration for '$key'. No 'class' specified.");
381
-           }
376
+            if (!isset($value['class'])) {
377
+                if (isset($this->_corePanels[$key]))
378
+                    $value = ArrayHelper::merge($value, $this->_corePanels[$key]);
379
+                else
380
+                    throw new InvalidConfigException("Invalid configuration for '$key'. No 'class' specified.");
381
+            }
382 382
         });
383 383
     }
384 384
 
Please login to merge, or discard this patch.
src/messages/config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     // and the '.svn' will match all files and directories named exactly '.svn'.
27 27
     // Note, the '/' characters in a pattern matches both '/' and '\'.
28 28
     // See helpers/FileHelper::findFiles() description for more details on pattern matching rules.
29
-     'only' => ['*.php', '*.js'],
29
+        'only' => ['*.php', '*.js'],
30 30
     // array, list of patterns that specify which files (not directories) should be processed.
31 31
     // If empty or not set, all files will be processed.
32 32
     // Please refer to "except" for details about the patterns.
Please login to merge, or discard this patch.
src/AuditTrailBehavior.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -218,8 +218,8 @@
 block discarded – undo
218 218
         $query = new Query;
219 219
 
220 220
         $query->select($queryParams['returnField'])
221
-              ->from($queryParams['tableName'])
222
-              ->where([$queryParams['searchField'] => $searchFieldValue]);
221
+                ->from($queryParams['tableName'])
222
+                ->where([$queryParams['searchField'] => $searchFieldValue]);
223 223
 
224 224
         $rows = $query->all();
225 225
 
Please login to merge, or discard this patch.