@@ -25,7 +25,7 @@ class ModelClientTest extends TestCase
25
25
private ModelClient $ modelClient ;
26
26
private Claude $ model ;
27
27
28
- public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature (): void
28
+ public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature ()
29
29
{
30
30
$ this ->httpClient = new MockHttpClient (function ($ method , $ url , $ options ) {
31
31
$ this ->assertEquals ('POST ' , $ method );
@@ -45,7 +45,7 @@ public function testAnthropicBetaHeaderIsSetWithSingleBetaFeature(): void
45
45
$ this ->modelClient ->request ($ this ->model , ['message ' => 'test ' ], $ options );
46
46
}
47
47
48
- public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures (): void
48
+ public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures ()
49
49
{
50
50
$ this ->httpClient = new MockHttpClient (function ($ method , $ url , $ options ) {
51
51
$ headers = $ this ->parseHeaders ($ options ['headers ' ]);
@@ -62,7 +62,7 @@ public function testAnthropicBetaHeaderIsSetWithMultipleBetaFeatures(): void
62
62
$ this ->modelClient ->request ($ this ->model , ['message ' => 'test ' ], $ options );
63
63
}
64
64
65
- public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty (): void
65
+ public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty ()
66
66
{
67
67
$ this ->httpClient = new MockHttpClient (function ($ method , $ url , $ options ) {
68
68
$ headers = $ this ->parseHeaders ($ options ['headers ' ]);
@@ -78,7 +78,7 @@ public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsEmpty(): void
78
78
$ this ->modelClient ->request ($ this ->model , ['message ' => 'test ' ], $ options );
79
79
}
80
80
81
- public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsNotProvided (): void
81
+ public function testAnthropicBetaHeaderIsNotSetWhenBetaFeaturesIsNotProvided ()
82
82
{
83
83
$ this ->httpClient = new MockHttpClient (function ($ method , $ url , $ options ) {
84
84
$ headers = $ this ->parseHeaders ($ options ['headers ' ]);
0 commit comments