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 ( a007ee...d6840a )
by Albert
02:20
created
src/DbExporter/Commands/SeedGeneratorCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
             $formatter = $this->getHelperSet()->get('formatter');
43 43
         $filename = $this->getFilename();
44 44
         $errorMessages = [
45
-                               'Success!',
46
-                               "Database seed class generated in: {$filename}",
47
-                              ];
45
+                                'Success!',
46
+                                "Database seed class generated in: {$filename}",
47
+                                ];
48 48
         $formattedBlock = $formatter->formatBlock($errorMessages, 'info', true);
49 49
         $this->line($formattedBlock);
50 50
     }
Please login to merge, or discard this patch.
src/DbExporter/DbMigrations.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -15,25 +15,25 @@  discard block
 block discarded – undo
15 15
      * @var string
16 16
      **/
17 17
     protected $columns = [
18
-                          'int' => 'integer',
19
-                          'smallint' => 'smallInteger',
20
-                          'bigint' => 'bigInteger',
21
-                          'char ' => 'string',
22
-                          'varchar' => 'string',
23
-                          'float' => 'float',
24
-                          'double' => 'double',
25
-                          'decimal' => 'decimal',
26
-                          'tinyint' => 'boolean',
27
-                          'date' => 'date',
28
-                          'timestamp' => 'timestamp',
29
-                          'datetime' => 'dateTime',
30
-                          'longtext' => 'longText',
31
-                          'mediumtext' => 'mediumText',
32
-                          'text' => 'text',
33
-                          'longblob' => 'binary',
34
-                          'blob' => 'binary',
35
-                          'enum' => 'enum',
36
-                         ];
18
+                            'int' => 'integer',
19
+                            'smallint' => 'smallInteger',
20
+                            'bigint' => 'bigInteger',
21
+                            'char ' => 'string',
22
+                            'varchar' => 'string',
23
+                            'float' => 'float',
24
+                            'double' => 'double',
25
+                            'decimal' => 'decimal',
26
+                            'tinyint' => 'boolean',
27
+                            'date' => 'date',
28
+                            'timestamp' => 'timestamp',
29
+                            'datetime' => 'dateTime',
30
+                            'longtext' => 'longText',
31
+                            'mediumtext' => 'mediumText',
32
+                            'text' => 'text',
33
+                            'longblob' => 'binary',
34
+                            'blob' => 'binary',
35
+                            'enum' => 'enum',
36
+                            ];
37 37
 
38 38
     protected $schema;
39 39
 
@@ -171,11 +171,11 @@  discard block
 block discarded – undo
171 171
             }
172 172
 
173 173
             $this->schema[$value['table_name']] = array(
174
-                                                   'up' => $up,
175
-                                                   'constraint' => $Constraint,
176
-                                                   'constraint_down' => $ConstraintDown,
177
-                                                   'down' => $down,
178
-                                                  );
174
+                                                    'up' => $up,
175
+                                                    'constraint' => $Constraint,
176
+                                                    'constraint_down' => $ConstraintDown,
177
+                                                    'down' => $down,
178
+                                                    );
179 179
         }//end foreach
180 180
 
181 181
         return $this;
Please login to merge, or discard this patch.