From 8391161fad394dbf88d3029dd3e55d4d5b59a1de Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Mon, 10 Aug 2020 22:36:30 +0200 Subject: Remove unexpected argument Signed-off-by: Daniel Kesselberg --- apps/user_ldap/lib/Command/ShowConfig.php | 2 +- apps/user_ldap/lib/Command/ShowRemnants.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/lib/Command/ShowConfig.php b/apps/user_ldap/lib/Command/ShowConfig.php index 7a24889eb09..b108ac757cd 100644 --- a/apps/user_ldap/lib/Command/ShowConfig.php +++ b/apps/user_ldap/lib/Command/ShowConfig.php @@ -105,7 +105,7 @@ class ShowConfig extends Command { $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 6fb207c4e2d..907a3418817 100644 --- a/apps/user_ldap/lib/Command/ShowRemnants.php +++ b/apps/user_ldap/lib/Command/ShowRemnants.php @@ -100,7 +100,7 @@ class ShowRemnants extends Command { $output->writeln(json_encode($rows)); } else { $table->setRows($rows); - $table->render($output); + $table->render(); } } } -- cgit v1.2.3