We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 732adeb + c9cc34f commit 2bbd86aCopy full SHA for 2bbd86a
2 files changed
src/Data/CodeExecution.php
@@ -4,8 +4,6 @@
4
5
namespace Gemini\Data;
6
7
-use Gemini\Contracts\Arrayable;
8
-
9
/**
10
* This type has no fields.
11
* Tool that executes code generated by the model, and automatically returns the result to the model.
@@ -25,6 +23,6 @@ public static function from(): self
25
23
26
24
public function toObject(): \stdClass
27
{
28
- return new \stdClass();
+ return new \stdClass;
29
}
30
src/Testing/ClientFake.php
@@ -32,9 +32,6 @@ class ClientFake implements ClientContract
32
*/
33
private array $functionCalls = [];
34
35
- /**
36
- * @param array<array-key, ResponseContract> $responses
37
- */
38
public function __construct(protected array $responses = []) {}
39
40
0 commit comments