From 89686d1e26024bd1dcc91a950da19bdcc0aa0297 Mon Sep 17 00:00:00 2001 From: Walter Huf Date: Thu, 29 Jan 2026 14:45:31 +0100 Subject: [PATCH] Provide access to BinLogCurrent on the connection --- src/MySQLReplication/MySQLReplicationFactory.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/MySQLReplication/MySQLReplicationFactory.php b/src/MySQLReplication/MySQLReplicationFactory.php index ebff21c..5212b81 100644 --- a/src/MySQLReplication/MySQLReplicationFactory.php +++ b/src/MySQLReplication/MySQLReplicationFactory.php @@ -129,4 +129,9 @@ public function getServerInfo(): BinLogServerInfo { return $this->binLogSocketConnect->getBinLogServerInfo(); } + + public function getBinLogCurrent(): BinLogCurrent + { + return $this->binLogSocketConnect->getBinLogCurrent(); + } }