diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-25 16:39:01 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-25 16:39:01 +0100 |
commit | 4e0fa85307105a40395987b3d6e50cb5a1652a18 (patch) | |
tree | f24198013ec0182376f45b7471b63310435ed573 /lib/public/authentication | |
parent | bc8cc9142e08611104cdc4df9d518775ef576066 (diff) | |
download | nextcloud-server-4e0fa85307105a40395987b3d6e50cb5a1652a18.tar.gz nextcloud-server-4e0fa85307105a40395987b3d6e50cb5a1652a18.zip |
page level doc blocks and class descriptions
Diffstat (limited to 'lib/public/authentication')
-rw-r--r-- | lib/public/authentication/iapachebackend.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/authentication/iapachebackend.php b/lib/public/authentication/iapachebackend.php index 2d2f8c4e486..3979a14302e 100644 --- a/lib/public/authentication/iapachebackend.php +++ b/lib/public/authentication/iapachebackend.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Authentication/IApacheBackend interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Authentication; |