From db095b855981d1e3662d888c0414fed2cda145c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 13 Jul 2022 06:50:40 +0200 Subject: [PATCH] Changes: - double-quotes to single - added missing `@return` --- boot.php | 4 ++++ update.php | 14 +++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/boot.php b/boot.php index c759bb93d2..2756a59478 100644 --- a/boot.php +++ b/boot.php @@ -169,6 +169,8 @@ function remote_user() * This function save text in session, to be shown to the user at next page load * * @param string $s - Text of notice + * + * @return void */ function notice(string $s) { @@ -189,6 +191,8 @@ function notice(string $s) * This function save text in session, to be shown to the user at next page load * * @param string $s - Text of notice + * + * @return void */ function info(string $s) { diff --git a/update.php b/update.php index d66691b962..9126488c49 100644 --- a/update.php +++ b/update.php @@ -78,11 +78,11 @@ function update_1298() $a->strings = []; // First we get the the localizations - if (file_exists("view/lang/$lang/strings.php")) { - include "view/lang/$lang/strings.php"; + if (file_exists('view/lang/$lang/strings.php')) { + include 'view/lang/$lang/strings.php'; } - if (file_exists("addon/morechoice/lang/$lang/strings.php")) { - include "addon/morechoice/lang/$lang/strings.php"; + if (file_exists('addon/morechoice/lang/$lang/strings.php')) { + include 'addon/morechoice/lang/$lang/strings.php'; } $localizedStrings = $a->strings; @@ -111,7 +111,7 @@ function update_1298() } } - Logger::notice($translateKey . " fix completed", ['action' => 'update', 'translateKey' => $translateKey, 'Success' => $success, 'Fail' => $fail ]); + Logger::notice($translateKey . ' fix completed', ['action' => 'update', 'translateKey' => $translateKey, 'Success' => $success, 'Fail' => $fail ]); } return Update::SUCCESS; } @@ -148,8 +148,8 @@ function update_1315() function update_1318() { - DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]); - DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]); + DBA::update('profile', ['marital' => 'In a relation'], ['marital' => 'Unavailable']); + DBA::update('profile', ['marital' => 'Single'], ['marital' => 'Available']); Worker::add(PRIORITY_LOW, 'ProfileUpdate'); return Update::SUCCESS;