Skip to content
Snippets Groups Projects
Commit d2a48d58 authored by Morris Jobke's avatar Morris Jobke
Browse files

fix "No page-level DocBlock"

parent 2dcaa4dd
No related branches found
No related tags found
No related merge requests found
Showing
with 153 additions and 7 deletions
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* API 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; namespace OCP;
/** /**
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
/** /**
* Public interface of ownCloud for apps to use. * Public interface of ownCloud for apps to use.
* App Class. * App Class
* *
*/ */
......
...@@ -20,12 +20,19 @@ ...@@ -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; namespace OCP;
/* /*
* public api to access default strings and urls for your templates * public api to access default strings and urls for your templates
*/ */
class Defaults { class Defaults {
private $defaults; private $defaults;
......
...@@ -26,6 +26,8 @@ ...@@ -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; namespace OCP;
interface GroupInterface extends \OC_Group_Interface {} interface GroupInterface extends \OC_Group_Interface {}
...@@ -5,6 +5,15 @@ ...@@ -5,6 +5,15 @@
* later. * later.
* See the COPYING-README file. * See the COPYING-README file.
*/ */
/**
* Public interface of ownCloud for apps to use.
* Cache 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; namespace OCP;
/** /**
......
...@@ -4,9 +4,17 @@ ...@@ -4,9 +4,17 @@
* This file is licensed under the Affero General Public License version 3 or * This file is licensed under the Affero General Public License version 3 or
* later. * later.
* See the COPYING-README file. * See the COPYING-README file.
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Config 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; namespace OCP;
/** /**
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Container 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; namespace OCP;
/** /**
......
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* DBConnection 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; namespace OCP;
/** /**
......
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Helper 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; namespace OCP;
/** /**
......
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* L10n 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; namespace OCP;
/** /**
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Image 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; namespace OCP;
/** /**
......
...@@ -4,9 +4,17 @@ ...@@ -4,9 +4,17 @@
* This file is licensed under the Affero General Public License version 3 or * This file is licensed under the Affero General Public License version 3 or
* later. * later.
* See the COPYING-README file. * See the COPYING-README file.
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Navigation manager 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; namespace OCP;
/** /**
......
...@@ -6,6 +6,15 @@ ...@@ -6,6 +6,15 @@
* later. * later.
* See the COPYING-README file. * See the COPYING-README file.
*/ */
/**
* Public interface of ownCloud for apps to use.
* Preview 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; namespace OCP;
/** /**
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Request 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; namespace OCP;
/** /**
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Server container 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; namespace OCP;
......
...@@ -8,6 +8,14 @@ ...@@ -8,6 +8,14 @@
* See the COPYING-README file. * See the COPYING-README file.
*/ */
/**
* Public interface of ownCloud for apps to use.
* Session 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; namespace OCP;
/** /**
......
...@@ -20,6 +20,16 @@ ...@@ -20,6 +20,16 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Tag manager 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;
/** /**
* Factory class creating instances of \OCP\ITags * Factory class creating instances of \OCP\ITags
* *
...@@ -30,9 +40,6 @@ ...@@ -30,9 +40,6 @@
* are entered in. If a user already has a tag 'family' for a type, and * are entered in. If a user already has a tag 'family' for a type, and
* tries to add a tag named 'Family' it will be silently ignored. * tries to add a tag named 'Family' it will be silently ignored.
*/ */
namespace OCP;
interface ITagManager { interface ITagManager {
/** /**
......
...@@ -20,6 +20,14 @@ ...@@ -20,6 +20,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* Tags 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; namespace OCP;
// FIXME: Where should I put this? Or should it be implemented as a Listener? // FIXME: Where should I put this? Or should it be implemented as a Listener?
......
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* URL generator 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; namespace OCP;
/** /**
......
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
* *
*/ */
/**
* Public interface of ownCloud for apps to use.
* User session 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; namespace OCP;
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment