Skip to content

Commit af301ea

Browse files
authored
Merge pull request #22180 from nextcloud/backport/22176/stable17
[stable17] Remove unexpected argument
2 parents bf0028f + 8391161 commit af301ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/user_ldap/lib/Command/ShowConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ protected function renderConfigs($configIDs, $output, $withPassword) {
105105
$rows[] = array($key, $value);
106106
}
107107
$table->setRows($rows);
108-
$table->render($output);
108+
$table->render();
109109
}
110110
}
111111
}

apps/user_ldap/lib/Command/ShowRemnants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
100100
$output->writeln(json_encode($rows));
101101
} else {
102102
$table->setRows($rows);
103-
$table->render($output);
103+
$table->render();
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)