Skip to content

Commit 61ed499

Browse files
committed
Remove return types from test cases
1 parent f0ca0a4 commit 61ed499

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/platform/tests/Bridge/Anthropic/ModelClientTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ModelClientTest extends TestCase
2525
private ModelClient $modelClient;
2626
private Claude $model;
2727

28-
public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature(): void
28+
public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature()
2929
{
3030
$this->httpClient = new MockHttpClient(function ($method, $url, $options) {
3131
$this->assertEquals('POST', $method);
@@ -45,7 +45,7 @@ public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature(): void
4545
$this->modelClient->request($this->model, ['message' => 'test'], $options);
4646
}
4747

48-
public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures(): void
48+
public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures()
4949
{
5050
$this->httpClient = new MockHttpClient(function ($method, $url, $options) {
5151
$headers = $this->parseHeaders($options['headers']);
@@ -62,7 +62,7 @@ public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures(): void
6262
$this->modelClient->request($this->model, ['message' => 'test'], $options);
6363
}
6464

65-
public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty(): void
65+
public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty()
6666
{
6767
$this->httpClient = new MockHttpClient(function ($method, $url, $options) {
6868
$headers = $this->parseHeaders($options['headers']);
@@ -78,7 +78,7 @@ public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty(): void
7878
$this->modelClient->request($this->model, ['message' => 'test'], $options);
7979
}
8080

81-
public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsNotProvided(): void
81+
public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsNotProvided()
8282
{
8383
$this->httpClient = new MockHttpClient(function ($method, $url, $options) {
8484
$headers = $this->parseHeaders($options['headers']);

0 commit comments

Comments
 (0)