diff options
Diffstat (limited to 'app/Auth')
-rw-r--r-- | app/Auth/DatabaseAuth.php | 2 | ||||
-rw-r--r-- | app/Auth/GithubAuth.php | 2 | ||||
-rw-r--r-- | app/Auth/GitlabAuth.php | 2 | ||||
-rw-r--r-- | app/Auth/GoogleAuth.php | 2 | ||||
-rw-r--r-- | app/Auth/RememberMeAuth.php | 2 | ||||
-rw-r--r-- | app/Auth/ReverseProxyAuth.php | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/app/Auth/DatabaseAuth.php b/app/Auth/DatabaseAuth.php index 727afaf3..69260fe7 100644 --- a/app/Auth/DatabaseAuth.php +++ b/app/Auth/DatabaseAuth.php @@ -90,7 +90,7 @@ class DatabaseAuth extends Base implements PasswordAuthenticationProviderInterfa * Get user object * * @access public - * @return null|\Kanboard\User\DatabaseUserProvider + * @return \Kanboard\User\DatabaseUserProvider */ public function getUser() { diff --git a/app/Auth/GithubAuth.php b/app/Auth/GithubAuth.php index 47da0413..a03c7158 100644 --- a/app/Auth/GithubAuth.php +++ b/app/Auth/GithubAuth.php @@ -84,7 +84,7 @@ class GithubAuth extends Base implements OAuthAuthenticationProviderInterface * Get user object * * @access public - * @return null|GithubUserProvider + * @return GithubUserProvider */ public function getUser() { diff --git a/app/Auth/GitlabAuth.php b/app/Auth/GitlabAuth.php index df6e0176..9e1ac4ef 100644 --- a/app/Auth/GitlabAuth.php +++ b/app/Auth/GitlabAuth.php @@ -84,7 +84,7 @@ class GitlabAuth extends Base implements OAuthAuthenticationProviderInterface * Get user object * * @access public - * @return null|GitlabUserProvider + * @return GitlabUserProvider */ public function getUser() { diff --git a/app/Auth/GoogleAuth.php b/app/Auth/GoogleAuth.php index 0dc1c62f..c4acfa0f 100644 --- a/app/Auth/GoogleAuth.php +++ b/app/Auth/GoogleAuth.php @@ -84,7 +84,7 @@ class GoogleAuth extends Base implements OAuthAuthenticationProviderInterface * Get user object * * @access public - * @return null|GoogleUserProvider + * @return GoogleUserProvider */ public function getUser() { diff --git a/app/Auth/RememberMeAuth.php b/app/Auth/RememberMeAuth.php index 02b7b9f6..5a0e48ec 100644 --- a/app/Auth/RememberMeAuth.php +++ b/app/Auth/RememberMeAuth.php @@ -66,7 +66,7 @@ class RememberMeAuth extends Base implements PreAuthenticationProviderInterface * Get user object * * @access public - * @return null|DatabaseUserProvider + * @return DatabaseUserProvider */ public function getUser() { diff --git a/app/Auth/ReverseProxyAuth.php b/app/Auth/ReverseProxyAuth.php index 8af7f0a2..06573edb 100644 --- a/app/Auth/ReverseProxyAuth.php +++ b/app/Auth/ReverseProxyAuth.php @@ -67,7 +67,7 @@ class ReverseProxyAuth extends Base implements PreAuthenticationProviderInterfac * Get user object * * @access public - * @return null|ReverseProxyUserProvider + * @return ReverseProxyUserProvider */ public function getUser() { |