fix some capital letters

This commit is contained in:
Morris Jobke 2013-11-25 16:42:28 +01:00
parent 4e0fa85307
commit b3e7e54c8d
5 changed files with 14 additions and 5 deletions

View File

@ -52,7 +52,6 @@ interface IManager {
*
* $callable has to return an instance of OCA\Activity\IConsumer
*
* @param string $key
* @param \Closure $callable
*/
function registerConsumer(\Closure $callable);

View File

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/Folder 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\Files;

View File

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/Node 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\Files;

View File

@ -45,7 +45,7 @@ interface IDBConnection {
/**
* Used to get the id of the just inserted element
* @param string $tableName the name of the table where we inserted the item
* @param string $table the name of the table where we inserted the item
* @return int the id of the inserted element
*/
public function lastInsertId($table = null);

View File

@ -256,7 +256,7 @@ class Share {
/**
* Get the item of item type shared with the current user
* @param string $itemType
* @param string $ItemTarget
* @param string $itemTarget
* @param int $format (optional) Format type must be defined by the backend
* @return Return depends on format
*/
@ -268,8 +268,8 @@ class Share {
/**
* Get the item of item type shared with a given user by source
* @param string $ItemType
* @param string $ItemSource
* @param string $itemType
* @param string $itemSource
* @param string $user User user to whom the item was shared
* @return array Return list of items with file_target, permissions and expiration
*/