File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/store/tests/Bridge/Neo4j Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 24
24
#[CoversClass(Store::class)]
25
25
final class StoreTest extends TestCase
26
26
{
27
- public function testStoreCannotInitializeOnInvalidResponse (): void
27
+ public function testStoreCannotInitializeOnInvalidResponse ()
28
28
{
29
29
$ httpClient = new MockHttpClient ([
30
30
new JsonMockResponse ([], [
@@ -40,7 +40,7 @@ public function testStoreCannotInitializeOnInvalidResponse(): void
40
40
$ store ->initialize ();
41
41
}
42
42
43
- public function testStoreCanInitialize (): void
43
+ public function testStoreCanInitialize ()
44
44
{
45
45
$ httpClient = new MockHttpClient ([
46
46
new JsonMockResponse ([
@@ -85,7 +85,7 @@ public function testStoreCanInitialize(): void
85
85
$ this ->assertSame (2 , $ httpClient ->getRequestsCount ());
86
86
}
87
87
88
- public function testStoreCanAdd (): void
88
+ public function testStoreCanAdd ()
89
89
{
90
90
$ httpClient = new MockHttpClient ([
91
91
new JsonMockResponse ([
@@ -164,7 +164,7 @@ public function testStoreCanAdd(): void
164
164
$ this ->assertSame (3 , $ httpClient ->getRequestsCount ());
165
165
}
166
166
167
- public function testStoreCanQuery (): void
167
+ public function testStoreCanQuery ()
168
168
{
169
169
$ httpClient = new MockHttpClient ([
170
170
new JsonMockResponse ([
You can’t perform that action at this time.
0 commit comments