Skip to content

Commit 378b312

Browse files
committed
feature: change config key
1 parent cde6c09 commit 378b312

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DebugBar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public static function instance(): WebmanDebugBar
2828
// 非 request 请求使用一个实例
2929
if (!$request) {
3030
if (!static::$_instance) {
31-
$config = config('plugin.kriss.webman-debugbar.app.debugbar', []);
31+
$config = config('plugin.webman-tech.debugbar.app.debugbar', []);
3232
static::$_instance = static::createDebugBar($config);
3333
}
3434
return static::$_instance;
3535
}
3636

3737
// 每个 request 请求单独创建一个实例
3838
if (!$request->{static::REQUEST_KEY}) {
39-
$config = config('plugin.kriss.webman-debugbar.app.debugbar', []);
39+
$config = config('plugin.webman-tech.debugbar.app.debugbar', []);
4040
$request->{static::REQUEST_KEY} = static::createDebugBar($config);
4141
}
4242
return $request->{static::REQUEST_KEY};

0 commit comments

Comments
 (0)