@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | $schema = $this->compile(); |
| 89 | 89 | $absolutePath = Config::get('db-exporter.export_path.migrations'); |
| 90 | 90 | $this->makePath($absolutePath); |
| 91 | - $this->filename = date('Y_m_d_His').'_create_'.$this->database.'_database.php'; |
|
| 92 | - static::$filePath = $absolutePath."/{$this->filename}"; |
|
| 91 | + $this->filename = date('Y_m_d_His') . '_create_' . $this->database . '_database.php'; |
|
| 92 | + static::$filePath = $absolutePath . "/{$this->filename}"; |
|
| 93 | 93 | file_put_contents(static::$filePath, $schema); |
| 94 | 94 | |
| 95 | 95 | return static::$filePath; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | $down = "Schema::drop('{$value['table_name']}');"; |
| 125 | - $up = "Schema::create('{$value['table_name']}', function(Blueprint $"."table) {\n"; |
|
| 125 | + $up = "Schema::create('{$value['table_name']}', function(Blueprint $" . "table) {\n"; |
|
| 126 | 126 | |
| 127 | 127 | $tableDescribes = $this->getTableDescribes($value['table_name']); |
| 128 | 128 | // Loop over the tables fields |
@@ -139,17 +139,17 @@ discard block |
||
| 139 | 139 | if (in_array($type, ['var', 'varchar', 'double', 'enum', 'decimal', 'float'])) { |
| 140 | 140 | $para = strpos($values->Type, '('); |
| 141 | 141 | $opt = substr($values->Type, ($para + 1), -1); |
| 142 | - $numbers = $type == 'enum' ? ', array('.$opt.')' : ', '.$opt; |
|
| 142 | + $numbers = $type == 'enum' ? ', array(' . $opt . ')' : ', ' . $opt; |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | $method = $this->columnType($type); |
| 146 | 146 | if ($values->Key == 'PRI') { |
| 147 | 147 | $tmp = $this->columnType($values->Data_Type, 'primaryKeys'); |
| 148 | 148 | $method = empty($tmp) ? $method : $tmp; |
| 149 | - $pri .= empty($tmp) ? ' $'."table->primary('".$values->Field."');\n" : ''; |
|
| 149 | + $pri .= empty($tmp) ? ' $' . "table->primary('" . $values->Field . "');\n" : ''; |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $up .= ' $'."table->{$method}('{$values->Field}'{$numbers}){$nullable}{$default}{$unsigned};\n"; |
|
| 152 | + $up .= ' $' . "table->{$method}('{$values->Field}'{$numbers}){$nullable}{$default}{$unsigned};\n"; |
|
| 153 | 153 | $up .= $pri; |
| 154 | 154 | }//end foreach |
| 155 | 155 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | if (!is_null($tableIndexes) && count($tableIndexes)) { |
| 158 | 158 | foreach ($tableIndexes as $index) { |
| 159 | 159 | if (Str::endsWith($index['Key_name'], '_index')) { |
| 160 | - $up .= ' $'."table->index('".$index['Column_name']."');\n"; |
|
| 160 | + $up .= ' $' . "table->index('" . $index['Column_name'] . "');\n"; |
|
| 161 | 161 | } |
| 162 | 162 | } |
| 163 | 163 | } |
@@ -170,12 +170,12 @@ discard block |
||
| 170 | 170 | $tableConstraints = $this->getTableConstraints($value['table_name']); |
| 171 | 171 | if (!is_null($tableConstraints) && count($tableConstraints)) { |
| 172 | 172 | $Constraint = $ConstraintDown = " |
| 173 | - Schema::table('{$value['table_name']}', function(Blueprint $"."table) {\n"; |
|
| 173 | + Schema::table('{$value['table_name']}', function(Blueprint $" . "table) {\n"; |
|
| 174 | 174 | $tables = []; |
| 175 | 175 | foreach ($tableConstraints as $foreign) { |
| 176 | 176 | if (!in_array($foreign->Field, $tables)) { |
| 177 | - $ConstraintDown .= ' $'."table->dropForeign('".$foreign->Field."');\n"; |
|
| 178 | - $Constraint .= ' $'."table->foreign('".$foreign->Field."')->references('".$foreign->References."')->on('".$foreign->ON."')->onDelete('".$foreign->onDelete."');\n"; |
|
| 177 | + $ConstraintDown .= ' $' . "table->dropForeign('" . $foreign->Field . "');\n"; |
|
| 178 | + $Constraint .= ' $' . "table->foreign('" . $foreign->Field . "')->references('" . $foreign->References . "')->on('" . $foreign->ON . "')->onDelete('" . $foreign->onDelete . "');\n"; |
|
| 179 | 179 | $tables[$foreign->Field] = $foreign->Field; |
| 180 | 180 | } |
| 181 | 181 | } |
@@ -242,10 +242,10 @@ discard block |
||
| 242 | 242 | }//end if |
| 243 | 243 | |
| 244 | 244 | // Grab the template |
| 245 | - $template = File::get(__DIR__.'/stubs/migration.stub'); |
|
| 245 | + $template = File::get(__DIR__ . '/stubs/migration.stub'); |
|
| 246 | 246 | |
| 247 | 247 | // Replace the classname |
| 248 | - $template = str_replace('{{name}}', 'Create'.ucfirst(Str::camel($this->database)).'Database', $template); |
|
| 248 | + $template = str_replace('{{name}}', 'Create' . ucfirst(Str::camel($this->database)) . 'Database', $template); |
|
| 249 | 249 | |
| 250 | 250 | // Replace the up and down values |
| 251 | 251 | $template = str_replace('{{up}}', $upSchema, $template); |
@@ -36,7 +36,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -28,14 +28,14 @@ |
||
| 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 | * |
@@ -32,6 +32,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
@@ -38,7 +38,7 @@ |
||
| 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() |
@@ -53,9 +53,9 @@ |
||
| 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() |