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 ( b8d17d...fa6a42 )
by Albert
03:03
created
src/DbExporter/DbMigrations.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -130,18 +130,18 @@  discard block
 block discarded – undo
130 130
 
131 131
             $tableIndexes = $this->getTableIndexes($value['table_name']);
132 132
             if (!is_null($tableIndexes) && count($tableIndexes)){
133
-            	foreach ($tableIndexes as $index) {
133
+                foreach ($tableIndexes as $index) {
134 134
                     if(Str::endsWith($index['Key_name'], '_index')) {
135
-                                    	   $up .= '                $' . "table->index('" . $index['Column_name'] . "');\n";
135
+                                            $up .= '                $' . "table->index('" . $index['Column_name'] . "');\n";
136 136
                     }
137 137
                     }
138
-            	}
138
+                }
139 139
 
140 140
             $up .= "            });\n\n";
141 141
             $Constraint = $ConstraintDown = "";
142 142
             /** 
143
-            * @var array $tableConstraints 
144
-            */
143
+             * @var array $tableConstraints 
144
+             */
145 145
             $tableConstraints = $this->getTableConstraints($value['table_name']);
146 146
             if (!is_null($tableConstraints) && count($tableConstraints)) {
147 147
             $Constraint = $ConstraintDown = "
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
     public function columnType($type)
172 172
     {
173
-       return array_key_exists($type, $columns) ? $this->columns[$type] : '';
173
+        return array_key_exists($type, $columns) ? $this->columns[$type] : '';
174 174
     }
175 175
     /**
176 176
      * Compile the migration into the base migration file
Please login to merge, or discard this patch.