mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
Class names from classes themselves in defaults
This commit is contained in:
parent
f302861662
commit
8afa1cb5bb
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ namespace JKingWeb\NewsSync;
|
|||
class Conf {
|
||||
public $lang = "en";
|
||||
|
||||
public $dbDriver = NS_BASE."Db\\DriverSQLite3";
|
||||
public $dbDriver = Db\DriverSQLite3::class;
|
||||
public $dbSQLite3File = BASE."newssync.db";
|
||||
public $dbSQLite3Key = "";
|
||||
public $dbSQLite3AutoUpd = true;
|
||||
|
@ -23,7 +23,7 @@ class Conf {
|
|||
public $dbMySQLDb = "newssync";
|
||||
public $dbMySQLAutoUpd = false;
|
||||
|
||||
public $userDriver = NS_BASE."User\\DriverInternal";
|
||||
public $userDriver = User\DriverInternal::class;
|
||||
public $userAuthPreferHTTP = false;
|
||||
public $userComposeNames = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue