Skip to content

Commit 66758bf

Browse files
committed
Change make to makeWith
1 parent 4c1febd commit 66758bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function boot()
3838
if ($config->get('laravel-rollout.storage') === 'database') {
3939
$table = $config->get('laravel-rollout.table');
4040

41-
$repository = new Repository($app->make(DatabaseStore::class, ['table' => $table]));
41+
$repository = new Repository($app->makeWith(DatabaseStore::class, ['table' => $table]));
4242
$driver = new Cache($repository);
4343
} else {
4444
$driver = new Cache($app->make('cache.store'));

0 commit comments

Comments
 (0)