From: Aaron Schulz Date: Mon, 26 Aug 2019 17:24:36 +0000 (-0700) Subject: rdbms: remove unused $fulltextEnabled field from DatabaseSqlite X-Git-Tag: 1.34.0-rc.0~555^2 X-Git-Url: https://git.cyclocoop.org/%2C?a=commitdiff_plain;h=ec9333b2b0d55ab71570504c0a2647e49a8d2417;p=lhc%2Fweb%2Fwiklou.git rdbms: remove unused $fulltextEnabled field from DatabaseSqlite Change-Id: Idad680485f6cf6b521a0ea33c02d30e78d1d6b50 --- diff --git a/includes/libs/rdbms/database/DatabaseSqlite.php b/includes/libs/rdbms/database/DatabaseSqlite.php index b1521dca2f..2977291ca6 100644 --- a/includes/libs/rdbms/database/DatabaseSqlite.php +++ b/includes/libs/rdbms/database/DatabaseSqlite.php @@ -57,9 +57,6 @@ class DatabaseSqlite extends Database { /** @var array List of shared database already attached to this connection */ private $alreadyAttached = []; - /** @var bool Whether full text is enabled */ - private static $fulltextEnabled = null; - /** @var string[] See https://www.sqlite.org/lang_transaction.html */ private static $VALID_TRX_MODES = [ '', 'DEFERRED', 'IMMEDIATE', 'EXCLUSIVE' ]; @@ -291,8 +288,9 @@ class DatabaseSqlite extends Database { } /** - * Attaches external database to our connection, see https://sqlite.org/lang_attach.html - * for details. + * Attaches external database to the connection handle + * + * @see https://sqlite.org/lang_attach.html * * @param string $name Database name to be used in queries like * SELECT foo FROM dbname.table