diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-08-10 22:36:30 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-08-10 22:36:30 +0200 |
commit | 7b68f0f3266ce410cf07ba44866b48a581287c92 (patch) | |
tree | d838cffba17cfd6c98587c319a84ae10094bcc9c /apps | |
parent | 3db61c43abf5b034e7850f87b122524ab24aeb66 (diff) | |
download | nextcloud-server-7b68f0f3266ce410cf07ba44866b48a581287c92.tar.gz nextcloud-server-7b68f0f3266ce410cf07ba44866b48a581287c92.zip |
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps')
-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 80af5718dcb..65d6f5165a7 100644 --- a/apps/user_ldap/lib/Command/ShowConfig.php +++ b/apps/user_ldap/lib/Command/ShowConfig.php @@ -108,7 +108,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 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; } |