Skip to content

Commit 79ea4c9

Browse files
committed
Renamed configuration base key.
1 parent 9d66c50 commit 79ea4c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/AuthServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class AuthServiceProvider extends ServiceProvider
1818
*/
1919
public function register()
2020
{
21-
$this->mergeConfigFrom($this->packagePath('config/ipauth.php'), 'ipauth');
21+
$this->mergeConfigFrom($this->packagePath('config/ip_auth.php'), 'ip_auth');
2222

2323
$this->registerRespositoryManager();
2424

@@ -37,7 +37,7 @@ protected function registerAuthManager()
3737
$this->app->singleton(AuthManagerContract::class, function($app) {
3838
$repository = $app->make(RepoManagerContract::class);
3939

40-
$config = $app->config->get('ipauth', []);
40+
$config = $app->config->get('ip_auth', []);
4141

4242
return (new AuthManager($repository, $config))
4343
->setEventDispatcher($app['events']);

0 commit comments

Comments
 (0)