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.
Test Setup Failed
Push — master ( 19e19f...6f9a2f )
by Albert
02:05
created
src/DbExporter/DbExportHandlerServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     public function register()
31 31
     {
32
-         $this->publishes([
32
+            $this->publishes([
33 33
             realpath(__DIR__ .'/../').'/config/db-exporter.php' => config_path('db-exporter.php'),
34 34
         ]);
35 35
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             realpath(__DIR__ .'/../').'/config/db-exporter.php', 'db-exporter'
38 38
         );
39 39
 
40
-       $this->app->register(DbMigrationsServiceProvider::class);
40
+        $this->app->register(DbMigrationsServiceProvider::class);
41 41
 
42 42
         // Load the classes
43 43
         $this->loadClasses();
Please login to merge, or discard this patch.
src/DbExporter/DbMigrations.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -159,17 +159,17 @@  discard block
 block discarded – undo
159 159
 
160 160
             $tableIndexes = $this->getTableIndexes($value['table_name']);
161 161
             if (!is_null($tableIndexes) && count($tableIndexes)){
162
-            	foreach ($tableIndexes as $index) {
162
+                foreach ($tableIndexes as $index) {
163 163
                     if(Str::endsWith($index['Key_name'], '_index'))
164
-                	   $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
164
+                        $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
165 165
                     }
166
-            	}
166
+                }
167 167
 
168 168
             $up .= "            });\n\n";
169 169
             $Constraint = $ConstraintDown = "";
170 170
             /** 
171
-            * @var array $tableConstraints 
172
-            */
171
+             * @var array $tableConstraints 
172
+             */
173 173
             $tableConstraints = $this->getTableConstraints($value['table_name']);
174 174
             if (!is_null($tableConstraints) && count($tableConstraints)){
175 175
             $Constraint = $ConstraintDown = "
@@ -210,24 +210,24 @@  discard block
 block discarded – undo
210 210
 
211 211
         // prevent of failure when no table
212 212
         if (!is_null($this->schema) && count($this->schema)) {
213
-	        foreach ($this->schema as $name => $values) {
214
-	            // check again for ignored tables
215
-	            if (in_array($name, self::$ignore)) {
216
-	                continue;
217
-	            }
218
-	            $upSchema .= "
213
+            foreach ($this->schema as $name => $values) {
214
+                // check again for ignored tables
215
+                if (in_array($name, self::$ignore)) {
216
+                    continue;
217
+                }
218
+                $upSchema .= "
219 219
 	    /**
220 220
 	     * Table: {$name}
221 221
 	     */
222 222
 	    {$values['up']}";
223 223
                 $upConstraint.="
224 224
                 {$values['constraint']}";
225
-                 $downConstraint.="
225
+                    $downConstraint.="
226 226
                 {$values['constraint_down']}";
227 227
 
228
-	            $downSchema .= "
228
+                $downSchema .= "
229 229
 	            {$values['down']}";
230
-	        }
230
+            }
231 231
         }
232 232
 
233 233
         // Grab the template
Please login to merge, or discard this patch.