You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Neo4j errors detected. First one with code "Neo.ClientError.Security.Unauthorized" and message "The client is unauthorized due to authentication failure."'
'Neo4j errors detected. First one with code "Neo.ClientError.Security.Unauthorized" and message "The client is unauthorized due to authentication failure."'
100
+
);
101
+
102
+
$client->getDriver(null);
103
+
}
104
+
32
105
publicfunctiontestDifferentAuth(): void
33
106
{
34
107
$auth = Authenticate::fromUrl($this->getUri());
@@ -53,28 +126,37 @@ public function testAvailabilityFullImplementation(): void
53
126
54
127
publicfunctiontestTransactionFunction(): void
55
128
{
56
-
$result = $this->getSession()->transaction(staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x'));
129
+
$result = $this->getSession()->transaction(
130
+
staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x')
131
+
);
57
132
58
133
self::assertEquals(1, $result);
59
134
60
-
$result = $this->getSession()->readTransaction(staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x'));
135
+
$result = $this->getSession()->readTransaction(
136
+
staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x')
137
+
);
61
138
62
139
self::assertEquals(1, $result);
63
140
64
-
$result = $this->getSession()->writeTransaction(staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x'));
141
+
$result = $this->getSession()->writeTransaction(
142
+
staticfn (TransactionInterface$tsx) => $tsx->run('UNWIND [1] AS x RETURN x')->first()->getAsInt('x')
0 commit comments