Completed
Push — feature/laravel-7 ( 13edb4...823f8c )
by Kit Loong
09:20 queued 04:22
created
src/Xethron/MigrationsGenerator/MigrationsGeneratorServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.