Skip to content

Commit b57d53b

Browse files
committed
Fix Config Name
1 parent d1ef09e commit b57d53b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DatabaseRepositoryServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ public function boot()
3232
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
3333
$this->publishes([
3434
__DIR__.'/config/' . self::CONFIG_FILE => config_path(self::CONFIG_FILE),
35-
], 'telegram-config');
35+
], 'config');
3636
} elseif ($this->app instanceof LumenApplication) {
37-
$this->app->configure('telegram');
37+
$this->app->configure('repository');
3838
}
3939

4040
$this->register();

0 commit comments

Comments
 (0)