Add PHPDoc for classes and interfaces

remotes/origin/handlebars-approach
Morris Jobke 11 years ago
parent 4edfadac96
commit c9e22f70c8
  1. 3
      lib/public/db/querybuilder/iliteral.php
  2. 3
      lib/public/db/querybuilder/iparameter.php
  3. 3
      lib/public/db/querybuilder/iqueryfunction.php
  4. 1
      lib/public/files/mount/imountmanager.php
  5. 2
      lib/public/template.php

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

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

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

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

@ -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 {
/**

Loading…
Cancel
Save