Compare commits

..

1 Commits

Author SHA1 Message Date
Clemens Schwaighofer
a523a4e831 ACL\Login class update for phpstan check 2022-05-24 16:50:37 +09:00

View File

@@ -221,7 +221,7 @@ class Login
// if there is a schema set in the config, or fall back to DB_SCHEMA // if there is a schema set in the config, or fall back to DB_SCHEMA
// if this exists, if this also does not exists use public schema // if this exists, if this also does not exists use public schema
/** @phpstan-ignore-next-line */ /** @phpstan-ignore-next-line */
if (defined('LOGIN_DB_SCHEMA') && !empty(LOGIN_DB_SCHEMA)) { if (!empty(LOGIN_DB_SCHEMA)) {
$SCHEMA = LOGIN_DB_SCHEMA; $SCHEMA = LOGIN_DB_SCHEMA;
} elseif (!empty($this->db->dbGetSchema(true))) { } elseif (!empty($this->db->dbGetSchema(true))) {
$SCHEMA = $this->db->dbGetSchema(true); $SCHEMA = $this->db->dbGetSchema(true);
@@ -296,14 +296,14 @@ class Login
) { ) {
$locale = $_SESSION['DEFAULT_LOCALE'] ?? ''; $locale = $_SESSION['DEFAULT_LOCALE'] ?? '';
} else { } else {
$locale = defined('SITE_LOCALE') && !empty(SITE_LOCALE) ? $locale = !empty(SITE_LOCALE) ?
SITE_LOCALE : SITE_LOCALE :
/** @phpstan-ignore-next-line DEFAULT_LOCALE could be empty */ /** @phpstan-ignore-next-line DEFAULT_LOCALE could be empty */
(defined('DEFAULT_LOCALE') && !empty(DEFAULT_LOCALE) ? (!empty(DEFAULT_LOCALE) ?
DEFAULT_LOCALE : 'en.UTF-8'); DEFAULT_LOCALE : 'en.UTF-8');
} }
// set domain // set domain
if (defined('CONTENT_PATH') && !empty(CONTENT_PATH)) { if (defined('CONTENT_PATH')) {
$domain = str_replace('/', '', CONTENT_PATH); $domain = str_replace('/', '', CONTENT_PATH);
} else { } else {
$domain = 'admin'; $domain = 'admin';