From bc407f4a8a988b1ef309094ddc41ef4c57b3ffcb Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 16 Oct 2024 01:20:43 +0000 Subject: [PATCH] Updated documentation. --- src/Db/DbTools.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Db/DbTools.php b/src/Db/DbTools.php index ef6faa2..8c51064 100644 --- a/src/Db/DbTools.php +++ b/src/Db/DbTools.php @@ -18,9 +18,9 @@ use RuntimeException; * the rest of the URL is described in the documentation of the parseDsn implementation of the respective backend. * * The scheme can be a PHP classpath to an implementation of DbBackend, or any of these aliases: - * - `null`: maps to `NullDb\NullDbBackend` or `Index-Db-NullDb-NullDbBackend`, provides a fallback blackhole database backend. - * - `mariadb`, `mysql`: maps to `MariaDb\MariaDbBackend` or `Index-Db-MariaDb-MariaDbBackend`, provides a backend based on the mysqli extension. - * - `sqlite`, `sqlite3`: maps to `Sqlite\SqliteBackend` or `Index-Db-Sqlite-SqliteBackend`, provides a backend based on the sqlite3 extension. + * - `null`: maps to `NullDb\NullDbBackend`, provides a fallback blackhole database backend. + * - `mariadb`, `mysql`: maps to `MariaDb\MariaDbBackend`, provides a backend based on the mysqli extension. + * - `sqlite`, `sqlite3`: maps to `Sqlite\SqliteBackend`, provides a backend based on the sqlite3 extension. * * Short names are currently hardcoded and cannot be expanded. */