aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Command/Config.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-10-02 23:27:44 +0200
committerJoas Schilling <coding@schilljs.com>2024-10-02 23:27:44 +0200
commit96f77d7b99d231d2ec16ee618ec9a2e6b5aa8500 (patch)
tree0d349f8ef512e611a3fb8582b75ff5e0509029ed /apps/files_external/lib/Command/Config.php
parent004d7dac91b8e6759f0279e6f932fe03d6203ba2 (diff)
downloadnextcloud-server-96f77d7b99d231d2ec16ee618ec9a2e6b5aa8500.tar.gz
nextcloud-server-96f77d7b99d231d2ec16ee618ec9a2e6b5aa8500.zip
fix(filesexternal): Remove unneeded 3rdparty library usebugfix/noid/remove-3rdparty-use
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_external/lib/Command/Config.php')
-rw-r--r--apps/files_external/lib/Command/Config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Command/Config.php b/apps/files_external/lib/Command/Config.php
index fa44a717859..f677e51d604 100644
--- a/apps/files_external/lib/Command/Config.php
+++ b/apps/files_external/lib/Command/Config.php
@@ -10,10 +10,10 @@ use OC\Core\Command\Base;
use OCA\Files_External\Lib\StorageConfig;
use OCA\Files_External\NotFoundException;
use OCA\Files_External\Service\GlobalStoragesService;
+use OCP\AppFramework\Http;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
-use Symfony\Component\HttpFoundation\Response;
class Config extends Base {
public function __construct(
@@ -49,7 +49,7 @@ class Config extends Base {
$mount = $this->globalService->getStorage($mountId);
} catch (NotFoundException $e) {
$output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>');
- return Response::HTTP_NOT_FOUND;
+ return Http::STATUS_NOT_FOUND;
}
$value = $input->getArgument('value');