diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-03 13:38:25 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-03 13:38:25 +0100 |
commit | d2a48d58ce2ffa2a599721b8acd78cf25909d236 (patch) | |
tree | 4239705550ac213f05db4e9e82d9ccbb77ebb33e /lib/public/groupinterface.php | |
parent | 2dcaa4ddbfb1f331c40e63a62b27dc3eb731ed76 (diff) | |
download | nextcloud-server-d2a48d58ce2ffa2a599721b8acd78cf25909d236.tar.gz nextcloud-server-d2a48d58ce2ffa2a599721b8acd78cf25909d236.zip |
fix "No page-level DocBlock"
Diffstat (limited to 'lib/public/groupinterface.php')
-rw-r--r-- | lib/public/groupinterface.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/groupinterface.php b/lib/public/groupinterface.php index 5603faa8265..0a5467f71d6 100644 --- a/lib/public/groupinterface.php +++ b/lib/public/groupinterface.php @@ -26,6 +26,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; interface GroupInterface extends \OC_Group_Interface {} |