diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-17 11:50:32 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-17 11:53:11 +0200 |
commit | 9319bbb00ce98bbb6da8f8772199356872f1873b (patch) | |
tree | 3bae4ba54b8071c46fdd1805c45fbbfec2e25e79 /apps/files_external/lib/Lib/Auth | |
parent | 3790ff86f150ca25262531fd07647839e41c07c6 (diff) | |
download | nextcloud-server-9319bbb00ce98bbb6da8f8772199356872f1873b.tar.gz nextcloud-server-9319bbb00ce98bbb6da8f8772199356872f1873b.zip |
More type safety
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_external/lib/Lib/Auth')
-rw-r--r-- | apps/files_external/lib/Lib/Auth/AuthMechanism.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/Lib/Auth/AuthMechanism.php b/apps/files_external/lib/Lib/Auth/AuthMechanism.php index 16354fa37fa..e43f6d06b47 100644 --- a/apps/files_external/lib/Lib/Auth/AuthMechanism.php +++ b/apps/files_external/lib/Lib/Auth/AuthMechanism.php @@ -30,7 +30,7 @@ use OCA\Files_External\Lib\StorageConfig; use OCA\Files_External\Lib\StorageModifierTrait; use OCA\Files_External\Lib\VisibilityTrait; use OCA\Files_External\Lib\IIdentifier; -use OCA\Files_External\Lib\IFrontendDefintion; +use OCA\Files_External\Lib\IFrontendDefinition; /** * Authentication mechanism @@ -52,7 +52,7 @@ use OCA\Files_External\Lib\IFrontendDefintion; * - StorageModifierTrait * Object can affect storage mounting */ -class AuthMechanism implements \JsonSerializable, IIdentifier, IFrontendDefintion { +class AuthMechanism implements \JsonSerializable, IIdentifier, IFrontendDefinition { /** Standard authentication schemes */ public const SCHEME_NULL = 'null'; public const SCHEME_BUILTIN = 'builtin'; |