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:
authorCarl Schwan <carl@carlschwan.eu>2022-10-11 14:33:02 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-10-11 14:33:02 +0300
commit0ff6c945d3198770836109e28a688561cf835b19 (patch)
treeba3c169a3d7a4833cad5541611b125e8582fe7f6
parentaf0b34346d8fe03fa3e13eaf6b6aae0fa494ef7c (diff)
Fix typing issue
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-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;
}
}