Skip to content

Commit d3dcbbf

Browse files
author
Imani Manyara
committed
Bug fixes
1 parent 12997d3 commit d3dcbbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/Providers/LaraphoneServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function register()
4040
$this->loadTranslationsFrom(self::PACKAGE_PATH . "resources/lang/", $this->packageName);
4141
$this->loadMigrationsFrom(self::PACKAGE_PATH.'/../database/migrations');
4242
$this->loadViewsFrom(self::PACKAGE_PATH . "resources/views", $this->packageName);
43-
$this->mergeConfigFrom(self::PACKAGE_PATH . "config/{$this->packageName}.php", $this->packageName);
43+
$this->mergeConfigFrom(self::PACKAGE_PATH . "config/config.php", $this->packageName);
4444

4545
$this->app->singleton('laraphone', function () {
4646
return new Laraphone();
@@ -150,7 +150,7 @@ private function registerConsoles(): static
150150
{
151151

152152
$this->publishes([
153-
self::PACKAGE_PATH . "config/{$this->packageName}.php" => config_path("{$this->packageName}.php"),
153+
self::PACKAGE_PATH . "config/config.php" => config_path("{$this->packageName}.php"),
154154
], "{$this->packageName}:config");
155155

156156
$this->publishes([

0 commit comments

Comments
 (0)