diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-08-10 22:36:30 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-08-11 07:47:32 +0000 |
commit | 778e5afcc5d0a073d5a4397bbaf3cfccb648951f (patch) | |
tree | 2110f86d8bea92dbce85e66d9f8b100f586e4229 /apps/user_ldap/lib | |
parent | df92a97f5b830592d9bbcf79173ba5da411088b1 (diff) | |
download | nextcloud-server-778e5afcc5d0a073d5a4397bbaf3cfccb648951f.tar.gz nextcloud-server-778e5afcc5d0a073d5a4397bbaf3cfccb648951f.zip |
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/Command/ShowConfig.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/Command/ShowRemnants.php | 2 |
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(); } } } |