diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-07-04 12:34:36 +0330 |
---|---|---|
committer | Faraz Samapoor <f.samapoor@gmail.com> | 2023-09-28 09:02:10 +0330 |
commit | 32838d8f0a99393dafb1ba0844c55fc257cc7a84 (patch) | |
tree | 4c95516699a5b8b7612d7b49c51661abce0c4517 /apps/files_external/lib/Command/Export.php | |
parent | c2e4a7be920af69ece4a68e9a410155a718355db (diff) | |
download | nextcloud-server-32838d8f0a99393dafb1ba0844c55fc257cc7a84.tar.gz nextcloud-server-32838d8f0a99393dafb1ba0844c55fc257cc7a84.zip |
Refactors files_external app commands.
To improve code readability.
Signed-off-by: Faraz Samapoor <fsa@adlas.at>
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'apps/files_external/lib/Command/Export.php')
-rw-r--r-- | apps/files_external/lib/Command/Export.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Command/Export.php b/apps/files_external/lib/Command/Export.php index 98cfb683060..b5f7b67eafb 100644 --- a/apps/files_external/lib/Command/Export.php +++ b/apps/files_external/lib/Command/Export.php @@ -54,6 +54,6 @@ class Export extends ListCommand { $listInput->setOption('show-password', true); $listInput->setOption('full', true); $listCommand->execute($listInput, $output); - return 0; + return self::SUCCESS; } } |