diff options
Diffstat (limited to 'lib/public/defaults.php')
-rw-r--r-- | lib/public/defaults.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 147f23e341f..5f908e4c5e7 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -20,12 +20,19 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Defaults Class + * + */ + +// 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; /* * public api to access default strings and urls for your templates */ - class Defaults { private $defaults; |