We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde6c09 commit 378b312Copy full SHA for 378b312
1 file changed
src/DebugBar.php
@@ -28,15 +28,15 @@ public static function instance(): WebmanDebugBar
28
// 非 request 请求使用一个实例
29
if (!$request) {
30
if (!static::$_instance) {
31
- $config = config('plugin.kriss.webman-debugbar.app.debugbar', []);
+ $config = config('plugin.webman-tech.debugbar.app.debugbar', []);
32
static::$_instance = static::createDebugBar($config);
33
}
34
return static::$_instance;
35
36
37
// 每个 request 请求单独创建一个实例
38
if (!$request->{static::REQUEST_KEY}) {
39
40
$request->{static::REQUEST_KEY} = static::createDebugBar($config);
41
42
return $request->{static::REQUEST_KEY};
0 commit comments