diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-10-23 16:47:38 +0200 |
---|---|---|
committer | Kate <26026535+provokateurin@users.noreply.github.com> | 2023-11-02 11:37:15 +0100 |
commit | 755de1e0b57aa9c7275257142b6f852fbcd1961e (patch) | |
tree | f9e993499eb4b7ff32682a9ef437c3e03b374669 /apps/files_external/lib/Lib | |
parent | 99fa7f77eff6b615c9e40d4afefd1b1d62cb4917 (diff) | |
download | nextcloud-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/Lib')
-rw-r--r-- | apps/files_external/lib/Lib/StorageConfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Lib/StorageConfig.php b/apps/files_external/lib/Lib/StorageConfig.php index 25205a24321..9e89e8fcc99 100644 --- a/apps/files_external/lib/Lib/StorageConfig.php +++ b/apps/files_external/lib/Lib/StorageConfig.php @@ -36,7 +36,7 @@ use OCA\Files_External\ResponseDefinitions; /** * External storage configuration * - * @psalm-import-type FilesExternalStorageConfig from ResponseDefinitions + * @psalm-import-type Files_ExternalStorageConfig from ResponseDefinitions */ class StorageConfig implements \JsonSerializable { public const MOUNT_TYPE_ADMIN = 1; @@ -399,7 +399,7 @@ class StorageConfig implements \JsonSerializable { /** * Serialize config to JSON - * @return FilesExternalStorageConfig + * @return Files_ExternalStorageConfig */ public function jsonSerialize(bool $obfuscate = false): array { $result = []; |