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.
Passed
Push — master ( fa6a42...a007ee )
by Albert
04:34
created
src/DbExporter/Commands/CopyToRemoteCommand.php 1 patch
Switch Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -86,22 +86,22 @@
 block discarded – undo
86 86
     {
87 87
         $options = $this->option();
88 88
         switch ($options) {
89
-        case ($options['seeds'] === true) && ($options['migrations'] === true):
90
-            if (!$this->upload('migrations')) {
91
-                return false;
92
-            }
89
+            case ($options['seeds'] === true) && ($options['migrations'] === true):
90
+                if (!$this->upload('migrations')) {
91
+                    return false;
92
+                }
93 93
 
94
-            return $this->upload('seeds');
94
+                return $this->upload('seeds');
95 95
 
96
-        case $options['migrations'] === true:
97
-            $this->commandOptions = 'migrations';
96
+            case $options['migrations'] === true:
97
+                $this->commandOptions = 'migrations';
98 98
 
99
-            return $this->upload('migrations');
99
+                return $this->upload('migrations');
100 100
 
101
-        case $options['seeds'] === true:
102
-            $this->commandOptions = 'seeds';
101
+            case $options['seeds'] === true:
102
+                $this->commandOptions = 'seeds';
103 103
 
104
-            return $this->upload('seeds');
104
+                return $this->upload('seeds');
105 105
         }
106 106
     }
107 107
 
Please login to merge, or discard this patch.