Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2022-05-18 22:48:58 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2022-05-19 15:36:41 +0300
commite163b1bb48a33c08a0e433d5d98fbc567c1243a9 (patch)
tree031d4d426eac57d47123cd50f4dfe6f4cff79915 /lib
parent2c5d604a7628c9cc782a6a4de0ad0a5bf7328eff (diff)
Rename userName to username to align with child classes
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Setup/AbstractDatabase.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php
index 8690e7c1c66..5ee9548564c 100644
--- a/lib/private/Setup/AbstractDatabase.php
+++ b/lib/private/Setup/AbstractDatabase.php
@@ -141,9 +141,9 @@ abstract class AbstractDatabase {
}
/**
- * @param string $userName
+ * @param string $username
*/
- abstract public function setupDatabase($userName);
+ abstract public function setupDatabase($username);
public function runMigrations() {
if (!is_dir(\OC::$SERVERROOT."/core/Migrations")) {