diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-06-16 17:12:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-16 17:12:14 +0200 |
commit | 4c93249514783181115be8bb040de701bffdba10 (patch) | |
tree | 50045595d92b2f71383e0061e6a41c8ff7fba75d /apps/files_external/lib/Command/Create.php | |
parent | cebfe4ba0e834dca11632b1e70c0398030e1ead0 (diff) | |
parent | 47a8d0d5e0c587bed693f5988d764ac6d50d43c4 (diff) | |
download | nextcloud-server-4c93249514783181115be8bb040de701bffdba10.tar.gz nextcloud-server-4c93249514783181115be8bb040de701bffdba10.zip |
Merge pull request #26319 from nextcloud/files_external_app.php
Move files_external to IBootstrap and remove some deprecated stuff in the process
Diffstat (limited to 'apps/files_external/lib/Command/Create.php')
-rw-r--r-- | apps/files_external/lib/Command/Create.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Command/Create.php b/apps/files_external/lib/Command/Create.php index 3fe9e71b17a..99991b893cd 100644 --- a/apps/files_external/lib/Command/Create.php +++ b/apps/files_external/lib/Command/Create.php @@ -119,7 +119,7 @@ class Create extends Base { } protected function execute(InputInterface $input, OutputInterface $output): int { - $user = $input->getOption('user'); + $user = (string) $input->getOption('user'); $mountPoint = $input->getArgument('mount_point'); $storageIdentifier = $input->getArgument('storage_backend'); $authIdentifier = $input->getArgument('authentication_backend'); |