Skip to content

Commit f428753

Browse files
committed
fix getDriver() method
1 parent 857ccd9 commit f428753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1174,6 +1174,6 @@ public function truncate(string $table): QueryBuilder
11741174

11751175
public function getDriver(): string
11761176
{
1177-
return $this->pdo->getAttribute(PDO::ATTR_DRIVER_NAME);
1177+
return strtolower($this->pdo->getAttribute(PDO::ATTR_DRIVER_NAME));
11781178
}
11791179
}

0 commit comments

Comments
 (0)