Completed
Push — master ( 2a503e...626ee6 )
by Kit Loong
01:12
created
src/KitLoong/MigrationsGenerator/MigrationsGeneratorServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.