@@ -228,7 +228,7 @@ |
||
228 | 228 | /** |
229 | 229 | * Generate foreign key migrations. |
230 | 230 | * |
231 | - * @param array $tables List of tables to create migrations for |
|
231 | + * @param string[] $tables List of tables to create migrations for |
|
232 | 232 | * @return void |
233 | 233 | */ |
234 | 234 | protected function generateForeignKeys(array $tables) |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | $this->app->singleton( |
34 | 34 | self::COMMAND, |
35 | - function (Application $app) { |
|
35 | + function(Application $app) { |
|
36 | 36 | return new MigrateGenerateCommand( |
37 | 37 | $app->make('Way\Generators\Generator'), |
38 | 38 | $app->make(SchemaGenerator::class), |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $this->commands(self::COMMAND); |
45 | 45 | |
46 | 46 | // Bind the Repository Interface to $app['migrations.repository'] |
47 | - $this->app->bind('Illuminate\Database\Migrations\MigrationRepositoryInterface', function ($app) { |
|
47 | + $this->app->bind('Illuminate\Database\Migrations\MigrationRepositoryInterface', function($app) { |
|
48 | 48 | return $app['migration.repository']; |
49 | 49 | }); |
50 | 50 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $this->app->singleton(Compiler::class, TemplateCompiler::class); |
56 | 56 | |
57 | - $this->app->singleton('connection', function () { |
|
57 | + $this->app->singleton('connection', function() { |
|
58 | 58 | return new Connection($this->app->get('config')->get('database.default')); |
59 | 59 | }); |
60 | 60 | } |