mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-16 20:34:34 -04:00
Upgrade code to php 8.1 (#6748)
* revert Fix code indentation Fix code Upgrade code to php 8.1 * fix remarques * code review * code review * code review * Apply suggestions from code review * code review * Fixes * Many remainging updates of array syntax * Lost case 'reading-list' * Uneeded PHPDoc --------- Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
This commit is contained in:
@@ -92,10 +92,10 @@ $dbValues = [
|
||||
'prefix' => $cliOptions->dbPrefix ?? null,
|
||||
];
|
||||
|
||||
$config = array(
|
||||
'salt' => generateSalt(),
|
||||
'db' => FreshRSS_Context::systemConf()->db,
|
||||
);
|
||||
$config = [
|
||||
'salt' => generateSalt(),
|
||||
'db' => FreshRSS_Context::systemConf()->db,
|
||||
];
|
||||
|
||||
$customConfigPath = DATA_PATH . '/config.custom.php';
|
||||
if (file_exists($customConfigPath)) {
|
||||
|
||||
Reference in New Issue
Block a user