From 4d4eda0f0625f2375003c434d433a08782e0a874 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20M=C3=BCller?= Date: Wed, 2 Oct 2013 15:03:52 +0200 Subject: [PATCH] fixing namespace of ApacheBackend - now know as OCP\Authentication\IApacheBackend --- .../iapachebackend.php} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename lib/public/{apachebackend.php => authentication/iapachebackend.php} (82%) diff --git a/lib/public/apachebackend.php b/lib/public/authentication/iapachebackend.php similarity index 82% rename from lib/public/apachebackend.php rename to 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 . * - * @return String with one or more HTML attributes. + * @return string with one or more HTML attributes. */ public function getLogoutAttribute(); -- 2.39.5