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
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-08-11 10:44:28 +0300
committerGitHub <noreply@github.com>2020-08-11 10:44:28 +0300
commit548576ec10b0081f75f1dffed67c9baa95eb0994 (patch)
tree7814055749e9abb532634db4491072b4b5b82623 /apps/user_ldap
parent21e0523c077a367b440f76d2a58c8baf1b5f4f00 (diff)
parent7b68f0f3266ce410cf07ba44866b48a581287c92 (diff)
Merge pull request #22176 from nextcloud/debt/noid/table-render-too-many-arguments
Remove unexpected argument
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Command/ShowConfig.php2
-rw-r--r--apps/user_ldap/lib/Command/ShowRemnants.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Command/ShowConfig.php b/apps/user_ldap/lib/Command/ShowConfig.php
index 80af5718dcb..65d6f5165a7 100644
--- a/apps/user_ldap/lib/Command/ShowConfig.php
+++ b/apps/user_ldap/lib/Command/ShowConfig.php
@@ -108,7 +108,7 @@ class ShowConfig extends Command {
$rows[] = [$key, $value];
}
$table->setRows($rows);
- $table->render($output);
+ $table->render();
}
}
}
diff --git a/apps/user_ldap/lib/Command/ShowRemnants.php b/apps/user_ldap/lib/Command/ShowRemnants.php
index 4722bf76ce1..c5e7c5321f3 100644
--- a/apps/user_ldap/lib/Command/ShowRemnants.php
+++ b/apps/user_ldap/lib/Command/ShowRemnants.php
@@ -101,7 +101,7 @@ class ShowRemnants extends Command {
$output->writeln(json_encode($rows));
} else {
$table->setRows($rows);
- $table->render($output);
+ $table->render();
}
return 0;
}