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 ( c00e5d...87ff8e )
by Albert
04:39
created
src/DbExporter/Commands/CopyToRemoteCommand.php 1 patch
Spacing   +8 added lines, -9 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             $this->line("\n");
37 37
             $this->info(ucfirst($type));
38 38
             foreach ($files as $file) {
39
-                $this->sectionMessage($type, $file.' uploaded.');
39
+                $this->sectionMessage($type, $file . ' uploaded.');
40 40
             }
41 41
         }
42 42
 
@@ -80,19 +80,18 @@  discard block
 block discarded – undo
80 80
 
81 81
     protected function upload($what)
82 82
     {
83
-        $localPath = Config::get('db-exporter.export_path.'.$what);
83
+        $localPath = Config::get('db-exporter.export_path.' . $what);
84 84
         $dir = scandir($localPath);
85
-        $remotePath = Config::get('db-exporter.remote.'.$what);
85
+        $remotePath = Config::get('db-exporter.remote.' . $what);
86 86
         $this->line("\n");
87 87
         $this->info(ucfirst($what));
88 88
         // Reset file coounter
89 89
         static::$filesCount = 0;
90 90
         // Prepare the progress bar
91
-        array_walk($dir, function ($file) {
91
+        array_walk($dir, function($file) {
92 92
             if ($this->ignoredFile($file)) {
93 93
                 return;
94
-            }
95
-            ++static::$filesCount;
94
+            }++static::$filesCount;
96 95
         });
97 96
         $progress = $this->output->createProgressBar(static::$filesCount);
98 97
         foreach ($dir as $file) {
@@ -102,12 +101,12 @@  discard block
 block discarded – undo
102 101
             }
103 102
 
104 103
             // Capture the uploaded files for displaying later
105
-            $this->uploadedFiles[$what][] = $remotePath.$file;
104
+            $this->uploadedFiles[$what][] = $remotePath . $file;
106 105
 
107 106
             // Copy the files
108 107
             Storage::disk($this->getDiskName())->put(
109
-                $remotePath.$file,
110
-                $localPath.'/'.$file
108
+                $remotePath . $file,
109
+                $localPath . '/' . $file
111 110
             );
112 111
             $progress->advance();
113 112
         }
Please login to merge, or discard this patch.
src/DbExporter/DbExporter.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@
 block discarded – undo
28 28
      * @var array
29 29
      **/
30 30
     protected $selects = [
31
-                          'column_name as Field',
32
-                          'column_type as Type',
33
-                          'is_nullable as null',
34
-                          'column_key as Key',
35
-                          'column_default as Default',
36
-                          'extra as Extra',
37
-                          'data_type as Data_Type',
38
-                         ];
31
+                            'column_name as Field',
32
+                            'column_type as Type',
33
+                            'is_nullable as null',
34
+                            'column_key as Key',
35
+                            'column_default as Default',
36
+                            'extra as Extra',
37
+                            'data_type as Data_Type',
38
+                            ];
39 39
     /**
40 40
      * Select fields from  constraints.
41 41
      *
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,14 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $pdo = DB::connection()->getPdo();
55 55
 
56
-        return $pdo->query('SELECT table_name FROM information_schema.tables WHERE table_schema="'.$this->database.'"');
56
+        return $pdo->query('SELECT table_name FROM information_schema.tables WHERE table_schema="' . $this->database . '"');
57 57
     }
58 58
 
59 59
     public function getTableIndexes($table)
60 60
     {
61 61
         $pdo = DB::connection()->getPdo();
62 62
 
63
-        return $pdo->query('SHOW INDEX FROM '.$this->database.'.'.$table.' WHERE Key_name != "PRIMARY"');
63
+        return $pdo->query('SHOW INDEX FROM ' . $this->database . '.' . $table . ' WHERE Key_name != "PRIMARY"');
64 64
     }
65 65
 
66 66
     /**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     protected function getTableData($table)
106 106
     {
107
-        return DB::table($this->database.'.'.$table)->get();
107
+        return DB::table($this->database . '.' . $table)->get();
108 108
     }
109 109
 
110 110
     //end getTableData()
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         $directories = explode($del, $path);
122 122
         foreach ($directories as $directory) {
123 123
             if (!empty($directory)) {
124
-                $dir .= $del.$directory;
124
+                $dir .= $del . $directory;
125 125
             }
126 126
 
127 127
             if (!is_dir($dir)) {
Please login to merge, or discard this patch.
src/DbExporter/Commands/GeneratorCommand.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
 
33 33
 //end getDatabaseName()
34 34
 
35
+    /**
36
+     * @param string $title
37
+     */
35 38
     protected function blockMessage($title, $message, $style = 'info')
36 39
     {
37 40
         // Symfony style block messages
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
 
47 50
 //end blockMessage()
48 51
 
52
+    /**
53
+     * @param string $message
54
+     */
49 55
     protected function sectionMessage($title, $message)
50 56
     {
51 57
         $formatter = $this->getHelperSet()->get('formatter');
@@ -86,6 +92,9 @@  discard block
 block discarded – undo
86 92
 
87 93
 //end getOptions()
88 94
 
95
+    /**
96
+     * @param string $action
97
+     */
89 98
     protected function fireAction($action, $database)
90 99
     {
91 100
         // Grab the options
Please login to merge, or discard this patch.
src/DbExporter/Commands/MigrationsGeneratorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $this->fireAction('migrate', $database);
39 39
 
40 40
         // Symfony style block messages
41
-        $this->blockMessage('Success!', 'Database migrations generated in: '.$this->handler->getMigrationsFilePath());
41
+        $this->blockMessage('Success!', 'Database migrations generated in: ' . $this->handler->getMigrationsFilePath());
42 42
     }
43 43
 
44 44
     //end fire()
Please login to merge, or discard this patch.
src/DbExporter/Commands/SeedGeneratorCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@
 block discarded – undo
53 53
 
54 54
     private function getFilename()
55 55
     {
56
-        $filename = ucfirst(Str::camel($this->database)).'DatabaseSeeder';
56
+        $filename = ucfirst(Str::camel($this->database)) . 'DatabaseSeeder';
57 57
 
58
-        return Config::get('db-exporter.export_path.seeds')."/{$filename}.php";
58
+        return Config::get('db-exporter.export_path.seeds') . "/{$filename}.php";
59 59
     }
60 60
 
61 61
     //end getFilename()
Please login to merge, or discard this patch.
src/DbExporter/DbMigrations.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
         $schema = $this->compile();
91 91
         $absolutePath = Config::get('db-exporter.export_path.migrations');
92 92
         $this->makePath($absolutePath);
93
-        $this->filename = date('Y_m_d_His').'_create_'.$this->database.'_database.php';
94
-        static::$filePath = $absolutePath."/{$this->filename}";
93
+        $this->filename = date('Y_m_d_His') . '_create_' . $this->database . '_database.php';
94
+        static::$filePath = $absolutePath . "/{$this->filename}";
95 95
         file_put_contents(static::$filePath, $schema);
96 96
 
97 97
         return static::$filePath;
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             }
125 125
 
126 126
             $down = "Schema::drop('{$value['table_name']}');";
127
-            $up = "Schema::create('{$value['table_name']}', function(Blueprint $"."table) {\n";
127
+            $up = "Schema::create('{$value['table_name']}', function(Blueprint $" . "table) {\n";
128 128
 
129 129
             $tableDescribes = $this->getTableDescribes($value['table_name']);
130 130
             // Loop over the tables fields
@@ -141,25 +141,25 @@  discard block
 block discarded – undo
141 141
                 if (in_array($type, ['var', 'varchar', 'double', 'enum', 'decimal', 'float'])) {
142 142
                     $para = strpos($values->Type, '(');
143 143
                     $opt = substr($values->Type, ($para + 1), -1);
144
-                    $numbers = 'enum' == $type ? ', array('.$opt.')' : ',  '.$opt;
144
+                    $numbers = 'enum' == $type ? ', array(' . $opt . ')' : ',  ' . $opt;
145 145
                 }
146 146
 
147 147
                 $method = $this->columnType($type);
148 148
                 if ('PRI' == $values->Key) {
149 149
                     $tmp = $this->columnType($values->Data_Type, 'primaryKeys');
150 150
                     $method = empty($tmp) ? $method : $tmp;
151
-                    $pri .= empty($tmp) ? '                $'."table->primary('".$values->Field."');\n" : '';
151
+                    $pri .= empty($tmp) ? '                $' . "table->primary('" . $values->Field . "');\n" : '';
152 152
                 }
153 153
 
154
-                $up .= '                $'."table->{$method}('{$values->Field}'{$numbers}){$nullable}{$default}{$unsigned};\n";
154
+                $up .= '                $' . "table->{$method}('{$values->Field}'{$numbers}){$nullable}{$default}{$unsigned};\n";
155 155
                 $up .= $pri;
156 156
             }//end foreach
157 157
 
158
-            $tableIndexes = (array) $this->getTableIndexes($value['table_name']);
158
+            $tableIndexes = (array)$this->getTableIndexes($value['table_name']);
159 159
             if (!is_null($tableIndexes) && count($tableIndexes)) {
160 160
                 foreach ($tableIndexes as $index) {
161 161
                     if (Str::endsWith(@$index['Key_name'], '_index')) {
162
-                        $up .= '                $'."table->index('".$index['Column_name']."');\n";
162
+                        $up .= '                $' . "table->index('" . $index['Column_name'] . "');\n";
163 163
                     }
164 164
                 }
165 165
             }
@@ -172,13 +172,13 @@  discard block
 block discarded – undo
172 172
             $tableConstraints = $this->getTableConstraints($value['table_name']);
173 173
             if (!is_null($tableConstraints) && $tableConstraints->count()) {
174 174
                 $Constraint = $ConstraintDown = "
175
-            Schema::table('{$value['table_name']}', function(Blueprint $"."table) {\n";
175
+            Schema::table('{$value['table_name']}', function(Blueprint $" . "table) {\n";
176 176
                 $tables = [];
177 177
                 foreach ($tableConstraints as $foreign) {
178 178
                     if (!in_array($foreign->Field, $tables)) {
179 179
                         $field = "{$foreign->Table}_{$foreign->Field}_foreign";
180
-                        $ConstraintDown .= '                $'."table->dropForeign('".$field."');\n";
181
-                        $Constraint .= '                $'."table->foreign('".$foreign->Field."')->references('".$foreign->References."')->on('".$foreign->ON."')->onDelete('".$foreign->onDelete."');\n";
180
+                        $ConstraintDown .= '                $' . "table->dropForeign('" . $field . "');\n";
181
+                        $Constraint .= '                $' . "table->foreign('" . $foreign->Field . "')->references('" . $foreign->References . "')->on('" . $foreign->ON . "')->onDelete('" . $foreign->onDelete . "');\n";
182 182
                         $tables[$foreign->Field] = $foreign->Field;
183 183
                     }
184 184
                 }
@@ -245,10 +245,10 @@  discard block
 block discarded – undo
245 245
         }//end if
246 246
 
247 247
         // Grab the template
248
-        $template = File::get(__DIR__.'/stubs/migration.stub');
248
+        $template = File::get(__DIR__ . '/stubs/migration.stub');
249 249
 
250 250
         // Replace the classname
251
-        $template = str_replace('{{name}}', 'Create'.ucfirst(Str::camel($this->database)).'Database', $template);
251
+        $template = str_replace('{{name}}', 'Create' . ucfirst(Str::camel($this->database)) . 'Database', $template);
252 252
 
253 253
         // Replace the up and down values
254 254
         $template = str_replace('{{up}}', $upSchema, $template);
Please login to merge, or discard this patch.