@@ -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(MigrationGeneratorSetting::class, function () { |
|
| 57 | + $this->app->singleton(MigrationGeneratorSetting::class, function() { |
|
| 58 | 58 | return new MigrationGeneratorSetting(); |
| 59 | 59 | }); |
| 60 | 60 | } |