Skip to content

Commit 965e117

Browse files
authored
Merge pull request #2767 from nextcloud/jr/command-rename-types
2 parents 38f51c8 + 57891ea commit 965e117

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Command/Rename.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
use Symfony\Component\Console\Output\OutputInterface;
2929

3030
class Rename extends FolderCommand {
31-
protected function configure() {
31+
protected function configure(): void {
3232
$this
3333
->setName('groupfolders:rename')
3434
->setDescription('Rename group folder')
@@ -37,7 +37,7 @@ protected function configure() {
3737
parent::configure();
3838
}
3939

40-
protected function execute(InputInterface $input, OutputInterface $output) {
40+
protected function execute(InputInterface $input, OutputInterface $output): int {
4141
$folder = $this->getFolder($input, $output);
4242
if ($folder === false) {
4343
return -1;

0 commit comments

Comments
 (0)