Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Command/Create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Command/Create.php b/lib/Command/Create.php
index ac4346bc..d29baef1 100644
--- a/lib/Command/Create.php
+++ b/lib/Command/Create.php
@@ -47,7 +47,7 @@ class Create extends Base {
protected function execute(InputInterface $input, OutputInterface $output) {
$id = $this->folderManager->createFolder($input->getArgument('name'));
- $output->writeln($id);
+ $output->writeln((string)$id);
return 0;
}
}