Skip to content

Commit b7fcd55

Browse files
committed
bug #1041 [Agent] Fix type of Toolbox::$tools (lyrixx)
This PR was merged into the main branch. Discussion ---------- [Agent] Fix type of `Toolbox::$tools` | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | | License | MIT see #1010 (comment) Commits ------- 0a90585 [Agent] Fix type of Toolbox::$tools
2 parents c745db0 + 0a90585 commit b7fcd55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent/src/Toolbox/Toolbox.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class Toolbox implements ToolboxInterface
3434
/**
3535
* List of executable tools.
3636
*
37-
* @var list<mixed>
37+
* @var list<object>
3838
*/
3939
private readonly array $tools;
4040

@@ -46,7 +46,7 @@ final class Toolbox implements ToolboxInterface
4646
private array $map;
4747

4848
/**
49-
* @param iterable<mixed> $tools
49+
* @param iterable<object> $tools
5050
*/
5151
public function __construct(
5252
iterable $tools,

0 commit comments

Comments
 (0)