Skip to content

Commit f28aa2c

Browse files
committed
minor #262 Remove void from tests (OskarStark)
This PR was merged into the main branch. Discussion ---------- Remove `void` from tests | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- f9f8769 Remove `void` from tests
2 parents dd03c20 + f9f8769 commit f28aa2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/store/tests/Bridge/Neo4j/StoreTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#[CoversClass(Store::class)]
2525
final class StoreTest extends TestCase
2626
{
27-
public function testStoreCannotInitializeOnInvalidResponse(): void
27+
public function testStoreCannotInitializeOnInvalidResponse()
2828
{
2929
$httpClient = new MockHttpClient([
3030
new JsonMockResponse([], [
@@ -40,7 +40,7 @@ public function testStoreCannotInitializeOnInvalidResponse(): void
4040
$store->initialize();
4141
}
4242

43-
public function testStoreCanInitialize(): void
43+
public function testStoreCanInitialize()
4444
{
4545
$httpClient = new MockHttpClient([
4646
new JsonMockResponse([
@@ -85,7 +85,7 @@ public function testStoreCanInitialize(): void
8585
$this->assertSame(2, $httpClient->getRequestsCount());
8686
}
8787

88-
public function testStoreCanAdd(): void
88+
public function testStoreCanAdd()
8989
{
9090
$httpClient = new MockHttpClient([
9191
new JsonMockResponse([
@@ -164,7 +164,7 @@ public function testStoreCanAdd(): void
164164
$this->assertSame(3, $httpClient->getRequestsCount());
165165
}
166166

167-
public function testStoreCanQuery(): void
167+
public function testStoreCanQuery()
168168
{
169169
$httpClient = new MockHttpClient([
170170
new JsonMockResponse([

0 commit comments

Comments
 (0)