Skip to content

Commit bb664f0

Browse files
committed
fixed missing method
1 parent 9779ed0 commit bb664f0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

EventHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct(?EventDispatcherInterface $dispatcher)
2222
}
2323

2424
/**
25-
* @param iterable<Statement> $statements
25+
* @param iterable<Statement> $statements
2626
* @param callable():CypherList<SummarizedResult<CypherList<CypherMap<mixed>>>> $runHandler
2727
*
2828
* @return CypherList<SummarizedResult<CypherList<CypherMap<mixed>>>>

SymfonyClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,9 @@ public function transaction(callable $tsxHandler, ?string $alias = null, ?Transa
101101
{
102102
return $this->writeTransaction($tsxHandler, $alias, $config);
103103
}
104+
105+
public function verifyConnectivity(?string $driver = null): bool
106+
{
107+
return $this->client->verifyConnectivity($driver);
108+
}
104109
}

0 commit comments

Comments
 (0)