diff --git a/apps/user_ldap/lib/Command/ShowConfig.php b/apps/user_ldap/lib/Command/ShowConfig.php index 7a24889eb0967..b108ac757cdd0 100644 --- a/apps/user_ldap/lib/Command/ShowConfig.php +++ b/apps/user_ldap/lib/Command/ShowConfig.php @@ -105,7 +105,7 @@ protected function renderConfigs($configIDs, $output, $withPassword) { $rows[] = array($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 6fb207c4e2dd2..907a341881714 100644 --- a/apps/user_ldap/lib/Command/ShowRemnants.php +++ b/apps/user_ldap/lib/Command/ShowRemnants.php @@ -100,7 +100,7 @@ protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln(json_encode($rows)); } else { $table->setRows($rows); - $table->render($output); + $table->render(); } } }