We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4181ef9 commit 485835cCopy full SHA for 485835c
src/NativeServiceProvider.php
@@ -35,6 +35,10 @@ public function packageRegistered()
35
{
36
$this->mergeConfigFrom($this->package->basePath('/../config/nativephp-internal.php'), 'nativephp-internal');
37
38
+ $this->app->singleton(FreshCommand::class, function ($app) {
39
+ return new FreshCommand($app['migrator']);
40
+ });
41
+
42
$this->app->singleton(MigrateCommand::class, function ($app) {
43
return new MigrateCommand($app['migrator'], $app['events']);
44
});
0 commit comments