diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-26 00:03:54 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-26 00:03:54 +0100 |
commit | 46dff0677d3eff1aa4da94865e82698229dd71e0 (patch) | |
tree | 91b96385b6a5725592bf68169f9d862b007bf14c /lib/public/appframework/http.php | |
parent | acf74b24f24e1c2ea9e454a1c09f6bcf404f6627 (diff) | |
parent | 5310a5924b18849c85b482819c350d72a6d0c67c (diff) | |
download | nextcloud-server-46dff0677d3eff1aa4da94865e82698229dd71e0.tar.gz nextcloud-server-46dff0677d3eff1aa4da94865e82698229dd71e0.zip |
Merge branch 'master' into calc_version_size
Diffstat (limited to 'lib/public/appframework/http.php')
-rw-r--r-- | lib/public/appframework/http.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/public/appframework/http.php b/lib/public/appframework/http.php index c584d4ec670..60f314202cc 100644 --- a/lib/public/appframework/http.php +++ b/lib/public/appframework/http.php @@ -20,10 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\HTTP class + */ namespace OCP\AppFramework; - +/** + * Base class which contains constants for HTTP status codes + */ class Http { const STATUS_CONTINUE = 100; |