Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/zh-hk/components/telescope.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ return [
];
```

> 注意: 請求追蹤功能已通過 RequestHandledListener 自動啟用。TelescopeMiddleware 僅用於 gRPC 的額外功能。
> 注意: 請求跟蹤功能已通過 RequestHandledListener 自動啓用。TelescopeMiddleware 僅用於 gRPC 的額外功能。

## 查看儀表板

Expand Down
2 changes: 1 addition & 1 deletion docs/zh-tw/components/telescope.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ return [
];
```

> 注意: 請求追蹤功能已透過 RequestHandledListener 自動啟用。TelescopeMiddleware 僅用於 gRPC 的額外功能。
> 注意: 請求跟蹤功能已透過 RequestHandledListener 自動啟用。TelescopeMiddleware 僅用於 gRPC 的額外功能。

## 檢視儀表板

Expand Down
1 change: 1 addition & 0 deletions src/lock/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"require": {
"hyperf/config": "~3.1.0",
"hyperf/context": "~3.1.0",
"hyperf/macroable": "~3.1.0",
"hyperf/stringable": "~3.1.0",
"hyperf/support": "~3.1.0",
"nesbot/carbon": "^2.0 || ^3.0"
Expand Down
2 changes: 2 additions & 0 deletions src/lock/src/Driver/AbstractLock.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace FriendsOfHyperf\Lock\Driver;

use FriendsOfHyperf\Lock\Exception\LockTimeoutException;
use Hyperf\Macroable\Macroable;
use Hyperf\Stringable\Str;
use Hyperf\Support\Traits\InteractsWithTime;
use Override;
Expand All @@ -21,6 +22,7 @@
abstract class AbstractLock implements LockInterface
{
use InteractsWithTime;
use Macroable;

/**
* The scope identifier of this lock.
Expand Down