Add PHPDoc for classes and interfaces

This commit is contained in:
Morris Jobke 2015-07-27 10:49:26 +02:00
parent 4edfadac96
commit c9e22f70c8
5 changed files with 12 additions and 0 deletions

View file

@ -20,6 +20,9 @@
*/
namespace OCP\DB\QueryBuilder;
/**
* @since 8.2.0
*/
interface ILiteral {
/**
* @return string

View file

@ -20,6 +20,9 @@
*/
namespace OCP\DB\QueryBuilder;
/**
* @since 8.2.0
*/
interface IParameter {
/**
* @return string

View file

@ -20,6 +20,9 @@
*/
namespace OCP\DB\QueryBuilder;
/**
* @since 8.2.0
*/
interface IQueryFunction {
/**
* @return string

View file

@ -25,6 +25,7 @@ namespace OCP\Files\Mount;
* Interface IMountManager
*
* Manages all mounted storages in the system
* @since 8.2.0
*/
interface IMountManager {

View file

@ -137,6 +137,8 @@ function html_select_options($options, $selected, $params=array()) {
/**
* This class provides the template system for owncloud. You can use it to load
* specific templates, add data and generate the html code
*
* @since 8.0.0
*/
class Template extends \OC_Template {
/**