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