@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | $this->app->singleton( |
| 24 | 24 | 'migration.generate', |
| 25 | - function (Application $app) { |
|
| 25 | + function(Application $app) { |
|
| 26 | 26 | return new MigrateGenerateCommand( |
| 27 | 27 | $app->make('Way\Generators\Generator'), |
| 28 | 28 | $app->make('Way\Generators\Filesystem\Filesystem'), |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | $this->commands('migration.generate'); |
| 37 | 37 | |
| 38 | 38 | // Bind the Repository Interface to $app['migrations.repository'] |
| 39 | - $this->app->bind('Illuminate\Database\Migrations\MigrationRepositoryInterface', function ($app) { |
|
| 39 | + $this->app->bind('Illuminate\Database\Migrations\MigrationRepositoryInterface', function($app) { |
|
| 40 | 40 | return $app['migration.repository']; |
| 41 | 41 | }); |
| 42 | 42 | } |