diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-02 15:03:52 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-02 15:03:52 +0200 |
commit | 4d4eda0f0625f2375003c434d433a08782e0a874 (patch) | |
tree | f8eb684a1cd2cf04cfab7a97b0978b607f227342 /lib | |
parent | 8c77cd190151a765719fe8d847aae5c5e5384180 (diff) | |
download | nextcloud-server-4d4eda0f0625f2375003c434d433a08782e0a874.tar.gz nextcloud-server-4d4eda0f0625f2375003c434d433a08782e0a874.zip |
fixing namespace of ApacheBackend - now know as OCP\Authentication\IApacheBackend
Diffstat (limited to 'lib')
-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(); |