diff --git a/src/Data/CodeExecution.php b/src/Data/CodeExecution.php index 7306cbc..cc42eb6 100644 --- a/src/Data/CodeExecution.php +++ b/src/Data/CodeExecution.php @@ -4,8 +4,6 @@ namespace Gemini\Data; -use Gemini\Contracts\Arrayable; - /** * This type has no fields. * 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 public function toObject(): \stdClass { - return new \stdClass(); + return new \stdClass; } } diff --git a/src/Testing/ClientFake.php b/src/Testing/ClientFake.php index edf2d78..5a95f12 100644 --- a/src/Testing/ClientFake.php +++ b/src/Testing/ClientFake.php @@ -32,9 +32,6 @@ class ClientFake implements ClientContract */ private array $functionCalls = []; - /** - * @param array $responses - */ public function __construct(protected array $responses = []) {} /**