diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-03 13:51:39 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-03 13:51:39 +0100 |
commit | ef592981ea29056df3800cb981f97aa26fb893cf (patch) | |
tree | 96b5182c4de52942100bae701c8047a544ba1ea5 /lib/public/activity | |
parent | d2a48d58ce2ffa2a599721b8acd78cf25909d236 (diff) | |
download | nextcloud-server-ef592981ea29056df3800cb981f97aa26fb893cf.tar.gz nextcloud-server-ef592981ea29056df3800cb981f97aa26fb893cf.zip |
unify license headers for public API files
Diffstat (limited to 'lib/public/activity')
-rw-r--r-- | lib/public/activity/iconsumer.php | 5 | ||||
-rw-r--r-- | lib/public/activity/imanager.php | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/lib/public/activity/iconsumer.php b/lib/public/activity/iconsumer.php index ca9bd5096b3..a0134a379dc 100644 --- a/lib/public/activity/iconsumer.php +++ b/lib/public/activity/iconsumer.php @@ -1,5 +1,5 @@ <?php - /** +/** * ownCloud * * @author Thomas Müller @@ -20,7 +20,8 @@ * */ - +// 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\Activity; interface IConsumer { diff --git a/lib/public/activity/imanager.php b/lib/public/activity/imanager.php index 99ac2a1958e..90215d637c0 100644 --- a/lib/public/activity/imanager.php +++ b/lib/public/activity/imanager.php @@ -1,5 +1,5 @@ <?php - /** +/** * ownCloud * * @author Thomas Müller @@ -20,7 +20,8 @@ * */ - +// 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\Activity; interface IManager { |