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:
authorDaniel Kesselberg <mail@danielkesselberg.de>2020-08-10 23:36:30 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2020-08-10 23:36:30 +0300
commit7b68f0f3266ce410cf07ba44866b48a581287c92 (patch)
treed838cffba17cfd6c98587c319a84ae10094bcc9c /apps/user_ldap/lib/Command/ShowRemnants.php
parent3db61c43abf5b034e7850f87b122524ab24aeb66 (diff)
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/user_ldap/lib/Command/ShowRemnants.php')
-rw-r--r--apps/user_ldap/lib/Command/ShowRemnants.php2
1 files changed, 1 insertions, 1 deletions
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;
}