diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-03-09 17:43:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 17:43:17 +0100 |
commit | 1f7cb027a4f3169274f6b5861d6d55e1e21ee002 (patch) | |
tree | ee3267859a01f1ae80919c864127156a889acd33 /lib/private/Authentication/TwoFactorAuth | |
parent | 5b0dfd3fa416a3df7ad1edda1f73f727d15a7454 (diff) | |
parent | df9e2b828aacd31c16028b4eca4d0e220e6929e7 (diff) | |
download | nextcloud-server-1f7cb027a4f3169274f6b5861d6d55e1e21ee002.tar.gz nextcloud-server-1f7cb027a4f3169274f6b5861d6d55e1e21ee002.zip |
Merge pull request #19820 from nextcloud/fix/mismatching-docblock-return-type
Fix mismatching docblock return types
Diffstat (limited to 'lib/private/Authentication/TwoFactorAuth')
-rw-r--r-- | lib/private/Authentication/TwoFactorAuth/EnforcementState.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/TwoFactorAuth/EnforcementState.php b/lib/private/Authentication/TwoFactorAuth/EnforcementState.php index 46bcc596d92..abd0ec7f2e7 100644 --- a/lib/private/Authentication/TwoFactorAuth/EnforcementState.php +++ b/lib/private/Authentication/TwoFactorAuth/EnforcementState.php @@ -55,7 +55,7 @@ class EnforcementState implements JsonSerializable { } /** - * @return string[] + * @return bool */ public function isEnforced(): bool { return $this->enforced; |