summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/ResponseDefinitions.php
diff options
context:
space:
mode:
authorjld3103 <jld3103yt@gmail.com>2023-10-23 16:47:38 +0200
committerKate <26026535+provokateurin@users.noreply.github.com>2023-11-02 11:37:15 +0100
commit755de1e0b57aa9c7275257142b6f852fbcd1961e (patch)
treef9e993499eb4b7ff32682a9ef437c3e03b374669 /apps/files_external/lib/ResponseDefinitions.php
parent99fa7f77eff6b615c9e40d4afefd1b1d62cb4917 (diff)
downloadnextcloud-server-755de1e0b57aa9c7275257142b6f852fbcd1961e.tar.gz
nextcloud-server-755de1e0b57aa9c7275257142b6f852fbcd1961e.zip
refactor: Rename OpenAPI type aliases to their namespaces
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'apps/files_external/lib/ResponseDefinitions.php')
-rw-r--r--apps/files_external/lib/ResponseDefinitions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_external/lib/ResponseDefinitions.php b/apps/files_external/lib/ResponseDefinitions.php
index cb501ed1bce..2c86ed18e55 100644
--- a/apps/files_external/lib/ResponseDefinitions.php
+++ b/apps/files_external/lib/ResponseDefinitions.php
@@ -26,7 +26,7 @@ declare(strict_types=1);
namespace OCA\Files_External;
/**
- * @psalm-type FilesExternalStorageConfig = array{
+ * @psalm-type Files_ExternalStorageConfig = array{
* applicableGroups?: string[],
* applicableUsers?: string[],
* authMechanism: string,
@@ -42,7 +42,7 @@ namespace OCA\Files_External;
* userProvided: bool,
* }
*
- * @psalm-type FilesExternalMount = array{
+ * @psalm-type Files_ExternalMount = array{
* name: string,
* path: string,
* type: 'dir',
@@ -51,7 +51,7 @@ namespace OCA\Files_External;
* permissions: int,
* id: int,
* class: string,
- * config: FilesExternalStorageConfig,
+ * config: Files_ExternalStorageConfig,
* }
*/
class ResponseDefinitions {