From a035d12a74a28bb5a351f42716369e8b10dad000 Mon Sep 17 00:00:00 2001 From: jradtilbrook Date: Mon, 4 May 2020 17:05:09 +0800 Subject: [PATCH] Fix container binding --- src/ServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 2e1b450..66322cf 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -21,7 +21,7 @@ public function register() }); $this->app->extend('migration.creator', function () { - return $this->app->make(MigrationCreator::class, __DIR__ . '/../stubs/'); + return $this->app->make(MigrationCreator::class, ['customStubPath' => __DIR__ . '/../stubs/']); }); }