mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Add PHPDoc for classes and interfaces
This commit is contained in:
parent
4edfadac96
commit
c9e22f70c8
5 changed files with 12 additions and 0 deletions
|
|
@ -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…
Reference in a new issue