From 48cdb4d22bbf3dc1bce3314650659f17fd0e223f Mon Sep 17 00:00:00 2001 From: Jonas Staudenmeir Date: Tue, 21 Oct 2025 09:12:06 +0200 Subject: [PATCH] Support custom Firebird connection resolvers --- src/Connectors/ConnectionFactory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Connectors/ConnectionFactory.php b/src/Connectors/ConnectionFactory.php index b4e5c96..4afdb15 100644 --- a/src/Connectors/ConnectionFactory.php +++ b/src/Connectors/ConnectionFactory.php @@ -32,7 +32,8 @@ protected function createConnection($driver, $connection, $database, $prefix = ' /** @var (\Closure(\PDO|\Closure, string, string, array): \Illuminate\Database\Connection)|null $resolver */ $resolver = Connection::getResolver($driver); - if (!in_array($driver, ['singlestore', 'firebird']) && $resolver) { + // TODO[L12]: firebird + if (!in_array($driver, ['singlestore']) && $resolver) { return $resolver($connection, $database, $prefix, $config); // @codeCoverageIgnore }