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 ( 33c34a...b1f0c4 )
by Steve
14:28
created
src/Audit.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This serves as both the Module for the MVC part of the audit and the configuration/entry point for the actual
4
- * audit process.
5
- *
6
- * @author    Steve Guns <[email protected]>
7
- * @package   com.bedezign.yii2.audit
8
- * @copyright 2014-2015 B&E DeZign
9
- */
3
+     * This serves as both the Module for the MVC part of the audit and the configuration/entry point for the actual
4
+     * audit process.
5
+     *
6
+     * @author    Steve Guns <[email protected]>
7
+     * @package   com.bedezign.yii2.audit
8
+     * @copyright 2014-2015 B&E DeZign
9
+     */
10 10
 
11 11
 namespace bedezign\yii2\audit;
12 12
 
@@ -373,12 +373,12 @@  discard block
 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.