Skip to content

Commit 2bbd86a

Browse files
authored
Merge pull request #155 from aydinfatih/main
feat: Remove unused PHPDoc and import statements for cleanup
2 parents 732adeb + c9cc34f commit 2bbd86a

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/Data/CodeExecution.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Gemini\Data;
66

7-
use Gemini\Contracts\Arrayable;
8-
97
/**
108
* This type has no fields.
119
* 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
2523

2624
public function toObject(): \stdClass
2725
{
28-
return new \stdClass();
26+
return new \stdClass;
2927
}
3028
}

src/Testing/ClientFake.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ class ClientFake implements ClientContract
3232
*/
3333
private array $functionCalls = [];
3434

35-
/**
36-
* @param array<array-key, ResponseContract> $responses
37-
*/
3835
public function __construct(protected array $responses = []) {}
3936

4037
/**

0 commit comments

Comments
 (0)