summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
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 cbd94287f9b..01fece31cb9 100644
--- a/apps/user_ldap/lib/Command/ShowConfig.php
+++ b/apps/user_ldap/lib/Command/ShowConfig.php
@@ -107,7 +107,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 034168cbd3f..59cd5877ec0 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();
}
}
}