We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6104b1 commit e9161aeCopy full SHA for e9161ae
src/Bolt/BoltConnection.php
@@ -18,6 +18,8 @@
18
use Bolt\protocol\Response;
19
use Bolt\protocol\V4_4;
20
use Bolt\protocol\V5;
21
+use Bolt\protocol\V5_1;
22
+use Bolt\protocol\V5_2;
23
use Bolt\protocol\V5_3;
24
use Bolt\protocol\V5_4;
25
use Laudis\Neo4j\Common\ConnectionConfiguration;
@@ -68,7 +70,7 @@ public function getImplementation(): array
68
70
* @psalm-mutation-free
69
71
*/
72
public function __construct(
- private V4_4|V5|V5_3|V5_4 $boltProtocol,
73
+ private V4_4|V5|V5_1|V5_2|V5_3|V5_4 $boltProtocol,
74
private readonly Connection $connection,
75
private readonly AuthenticateInterface $auth,
76
private readonly string $userAgent,
0 commit comments