diff options
-rw-r--r-- | lib/public/authentication/iapachebackend.php (renamed from lib/public/apachebackend.php) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/apachebackend.php b/lib/public/authentication/iapachebackend.php index 6085714a6e9..5376baf525c 100644 --- a/lib/public/apachebackend.php +++ b/lib/public/authentication/iapachebackend.php @@ -21,14 +21,14 @@ * */ -namespace OCP; +namespace OCP\Authentication; -interface ApacheBackend { +interface IApacheBackend { /** - * In case the user has been authorized by Apache true is returned. + * In case the user has been authenticated by Apache true is returned. * - * @return boolean whether Apache reports a user is currently logged in. + * @return boolean whether Apache reports a user as currently logged in. */ public function isSessionActive(); @@ -36,7 +36,7 @@ interface ApacheBackend { * Creates an attribute which is added to the logout hyperlink. It can * supply any attribute(s) which are valid for <a>. * - * @return String with one or more HTML attributes. + * @return string with one or more HTML attributes. */ public function getLogoutAttribute(); |