]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix all PHPDoc types and variable names, in /lib
authorRobin McCorkell <rmccorkell@karoshi.org.uk>
Sun, 11 May 2014 20:51:30 +0000 (21:51 +0100)
committerRobin McCorkell <rmccorkell@karoshi.org.uk>
Tue, 13 May 2014 18:08:14 +0000 (19:08 +0100)
75 files changed:
lib/private/appframework/dependencyinjection/dicontainer.php
lib/private/appframework/http.php
lib/private/appframework/routing/routeconfig.php
lib/private/archive/tar.php
lib/private/avatar.php
lib/private/avatarmanager.php
lib/private/backgroundjob/joblist.php
lib/private/cache/file.php
lib/private/connector/sabre/auth.php
lib/private/connector/sabre/filesplugin.php
lib/private/connector/sabre/quotaplugin.php
lib/private/db.php
lib/private/db/connectionwrapper.php
lib/private/db/mdb2schemamanager.php
lib/private/db/mdb2schemareader.php
lib/private/defaults.php
lib/private/fileproxy.php
lib/private/files/cache/cache.php
lib/private/files/cache/scanner.php
lib/private/files/filesystem.php
lib/private/files/mapper.php
lib/private/files/mount/manager.php
lib/private/files/node/folder.php
lib/private/files/storage/common.php
lib/private/files/storage/wrapper/quota.php
lib/private/geo.php
lib/private/group.php
lib/private/group/dummy.php
lib/private/group/example.php
lib/private/helper.php
lib/private/image.php
lib/private/installer.php
lib/private/l10n.php
lib/private/l10n/factory.php
lib/private/migrate.php
lib/private/migration/content.php
lib/private/ocs.php
lib/private/ocs/cloud.php
lib/private/ocs/result.php
lib/private/ocsclient.php
lib/private/preview.php
lib/private/response.php
lib/private/route/route.php
lib/private/route/router.php
lib/private/share/helper.php
lib/private/share/hooks.php
lib/private/share/mailnotifications.php
lib/private/share/searchresultsorter.php
lib/private/share/share.php
lib/private/subadmin.php
lib/private/tags.php
lib/private/template/functions.php
lib/private/template/resourcelocator.php
lib/private/templatelayout.php
lib/private/urlgenerator.php
lib/private/user/database.php
lib/private/user/example.php
lib/private/user/http.php
lib/private/user/interface.php
lib/private/util.php
lib/private/vobject.php
lib/public/app.php
lib/public/backgroundjob.php
lib/public/backgroundjob/ijoblist.php
lib/public/contacts.php
lib/public/db.php
lib/public/iavatar.php
lib/public/iavatarmanager.php
lib/public/idbconnection.php
lib/public/il10n.php
lib/public/route/iroute.php
lib/public/share.php
lib/public/template.php
lib/public/user.php
lib/public/util.php

index 97a6569a0f6e087db16805dca16b70f2d492e18b..ee492b8a9e5e13ddc229d291de4b940d2bd7a58d 100644 (file)
@@ -190,8 +190,8 @@ class DIContainer extends SimpleContainer implements IAppContainer{
        }
 
        /**
-        * @param $message
-        * @param $level
+        * @param string $message
+        * @param string $level
         * @return mixed
         */
        function log($message, $level) {
index d09e1d3ce2e778b8daf1b29951d13875edb61ac8..2b1387af715dba9dfea927a7233d62bdf8ba336d 100644 (file)
@@ -33,7 +33,7 @@ class Http extends BaseHttp {
        protected $headers;
 
        /**
-        * @param $_SERVER $server
+        * @param array $server $_SERVER
         * @param string $protocolVersion the http version to use defaults to HTTP/1.1
         */
        public function __construct($server, $protocolVersion='HTTP/1.1') {
index a3bbde6af5345d492a9cf7457293e0b62b1c411b..91ea7778d0868d5c1a5b4a31d9f1c23f1eeb481c 100644 (file)
@@ -61,7 +61,7 @@ class RouteConfig {
 
        /**
         * Creates one route base on the give configuration
-        * @param $routes
+        * @param array $routes
         * @throws \UnexpectedValueException
         */
        private function processSimpleRoutes($routes)
@@ -105,7 +105,7 @@ class RouteConfig {
         *  - update
         *  - destroy
         *
-        * @param $routes
+        * @param array $routes
         */
        private function processResources($routes)
        {
@@ -151,7 +151,7 @@ class RouteConfig {
 
        /**
         * Based on a given route name the controller name is generated
-        * @param $controller
+        * @param string $controller
         * @return string
         */
        private function buildControllerName($controller)
@@ -161,7 +161,7 @@ class RouteConfig {
 
        /**
         * Based on the action part of the route name the controller method name is generated
-        * @param $action
+        * @param string $action
         * @return string
         */
        private function buildActionName($action) {
@@ -170,7 +170,7 @@ class RouteConfig {
 
        /**
         * Generates the id used in the url part o the route url
-        * @param $resource
+        * @param string $resource
         * @return string
         */
        private function buildResourceId($resource) {
@@ -179,7 +179,7 @@ class RouteConfig {
 
        /**
         * Underscored strings are converted to camel case strings
-        * @param $str string
+        * @param string $str
         * @return string
         */
        private function underScoreToCamelCase($str) {
index cbdb565ba35e6440f8c04cfb1379ee7e407ba117..21a995d9e50f7bd06c779764414f89f0a6c8f306 100644 (file)
@@ -154,7 +154,7 @@ class OC_Archive_TAR extends OC_Archive{
        }
        /**
         * get the last modified time of a file in the archive
-        * @param string path
+        * @param string $path
         * @return int
         */
        function mtime($path) {
index e97f55eecafeede2526d2c13ed747528081fc37f..459597984769fee409699ed1c066abbfdb4a3c77 100644 (file)
@@ -16,7 +16,7 @@ class OC_Avatar implements \OCP\IAvatar {
 
        /**
         * @brief constructor
-        * @param $user string user to do avatar-management with
+        * @param string $user user to do avatar-management with
        */
        public function __construct ($user) {
                $this->view = new \OC\Files\View('/'.$user);
@@ -24,7 +24,7 @@ class OC_Avatar implements \OCP\IAvatar {
 
        /**
         * @brief get the users avatar
-        * @param $size integer size in px of the avatar, avatars are square, defaults to 64
+        * @param int $size size in px of the avatar, avatars are square, defaults to 64
         * @return boolean|\OC_Image containing the avatar or false if there's no image
        */
        public function get ($size = 64) {
@@ -44,7 +44,7 @@ class OC_Avatar implements \OCP\IAvatar {
 
        /**
         * @brief sets the users avatar
-        * @param $data mixed OC_Image, imagedata or path to set a new avatar
+        * @param \OC_Image|resource|string $data OC_Image, imagedata or path to set a new avatar
         * @throws Exception if the provided file is not a jpg or png image
         * @throws Exception if the provided image is not valid
         * @throws \OC\NotSquareException if the image is not square
index 3ca46868ea6d3968217c2655aa838192622e2293..f462e6ac5fd4bab518dc56a9b79ed352980331a6 100644 (file)
@@ -17,7 +17,7 @@ class AvatarManager implements IAvatarManager {
        /**
         * @brief return a user specific instance of \OCP\IAvatar
         * @see \OCP\IAvatar
-        * @param $user string the ownCloud user id
+        * @param string $user the ownCloud user id
         * @return \OCP\IAvatar
         */
        function getAvatar($user) {
index 26c9026934964c18d48fc8d47b84fa9c59ad2e95..9fa13c25851de21666db812f1582658a12316b0d 100644 (file)
@@ -31,7 +31,7 @@ class JobList implements IJobList {
        }
 
        /**
-        * @param \Test\BackgroundJob\TestJob $job
+        * @param Job|string $job
         * @param mixed $argument
         */
        public function add($job, $argument = null) {
@@ -48,7 +48,7 @@ class JobList implements IJobList {
        }
 
        /**
-        * @param Job $job
+        * @param Job|string $job
         * @param mixed $argument
         */
        public function remove($job, $argument = null) {
@@ -70,7 +70,7 @@ class JobList implements IJobList {
        /**
         * check if a job is in the list
         *
-        * @param $job
+        * @param Job|string $job
         * @param mixed $argument
         * @return bool
         */
@@ -126,7 +126,7 @@ class JobList implements IJobList {
 
        /**
         * @param int $id
-        * @return Job
+        * @return Job|null
         */
        public function getById($id) {
                $query = $this->conn->prepare('SELECT `id`, `class`, `last_run`, `argument` FROM `*PREFIX*jobs` WHERE `id` = ?');
index feee9cc32b6340f7555e3825d5f0fab48548eb97..4e7c065678e3fb27a2c3f1903416d325071b30d6 100644 (file)
@@ -48,7 +48,7 @@ class File {
        /**
         * Returns the size of the stored/cached data
         *
-        * @param $key
+        * @param string $key
         * @return int
         */
        public function size($key) {
index 5577273df8c004c79317531030021b7e953f7635..9ebf5fc05cfe0c69585ea2e3dc16b1bb4b18d348 100644 (file)
@@ -69,6 +69,8 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic {
          * even if there are no HTTP Basic Auth headers.
          * In other case, just fallback to the parent implementation.
          *
+         * @param Sabre_DAV_Server $server
+         * @param $realm
          * @return bool
          */
        public function authenticate(Sabre_DAV_Server $server, $realm) {
index 65231040fb5973f7622e1730387d8a3c427a1ef5..f8495b405243050388fba301894ecdb48669a23d 100644 (file)
@@ -73,7 +73,7 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin
        }
 
        /**
-        * @param $filePath
+        * @param string $filePath
         * @param Sabre_DAV_INode $node
         * @throws Sabre_DAV_Exception_BadRequest
         */
index 1e73e1645c3f6eff57c95fcc53400536357028c8..c9b8336b57b14f67a8eefb741462cead14f679aa 100644 (file)
@@ -97,7 +97,7 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
        }
 
        /**
-        * @param $parentUri
+        * @param string $parentUri
         * @return mixed
         */
        public function getFreeSpace($parentUri) {
index 322a13642ae242ef8361f09946b7ac9f313a9fde..52bf570d1d0ee2b7d814a7c7a9edbe858c6cb30d 100644 (file)
@@ -401,7 +401,7 @@ class OC_DB {
 
        /**
         * @brief replaces the ownCloud tables with a new set
-        * @param $file string path to the MDB2 xml db export file
+        * @param string $file path to the MDB2 xml db export file
         */
        public static function replaceDB( $file ) {
                $schemaManager = self::getMDB2SchemaManager();
index c2cfc21d2040c7ada2b6bab7917d7332ececffb8..132e76666ab5d705f6ab1fb9acdce6ad333f12a2 100644 (file)
@@ -41,8 +41,8 @@ class ConnectionWrapper implements \OCP\IDBConnection {
 
        /**
         * Insert a row if a matching row doesn't exists.
-        * @param string The table name (will replace *PREFIX*) to perform the replace on.
-        * @param array
+        * @param string $table The table name (will replace *PREFIX*) to perform the replace on.
+        * @param array $input
         *
         * The input array if in the form:
         *
index aaf2ea543b9ba31e6e58dc689c9cffce1cf4962b..d98197445e999c1474a5dbe0dd28c11fa17383fa 100644 (file)
@@ -126,7 +126,7 @@ class MDB2SchemaManager {
 
        /**
         * @brief replaces the ownCloud tables with a new set
-        * @param $file string path to the MDB2 xml db export file
+        * @param string $file path to the MDB2 xml db export file
         */
        public function replaceDB( $file ) {
                $apps = \OC_App::getAllApps();
index 0923b6cf1a95401cd49aafd3be12502cc28ed874..597650985fac87000ea19e4ec133aea85ec0ffd3 100644 (file)
@@ -66,7 +66,7 @@ class MDB2SchemaReader {
        }
 
        /**
-        * @param\Doctrine\DBAL\Schema\Schema $schema
+        * @param \Doctrine\DBAL\Schema\Schema $schema
         * @param \SimpleXMLElement $xml
         * @throws \DomainException
         */
index fca798568c579402b85dbe87c7b5a4f7fad5fbfa..663c327a3b0eab5ce45de284d2b080c77f33f42e 100644 (file)
@@ -185,7 +185,7 @@ class OC_Defaults {
 
        /**
         * Returns mail header color
-        * @return mail header color
+        * @return string
         */
        public function getMailHeaderColor() {
                if ($this->themeExist('getMailHeaderColor')) {
index 88976c1b8e510e46d1f4a1ee96aac85e4b3d2809..2835e9746427cd88d6a35eb9d99b076aa54a9210 100644 (file)
@@ -47,7 +47,7 @@ class OC_FileProxy{
        /**
         * fallback function when a proxy operation is not implemented
         * @param string $function the name of the proxy operation
-        * @param mixed
+        * @param mixed $arguments
         *
         * this implements a dummy proxy for all operations
         */
index 6aab2173da79ad8ee44614d9e32790ce52a41075..3e4f6dfb13259faf6619a6e10f619c5e9597bf90 100644 (file)
@@ -640,7 +640,7 @@ class Cache {
 
        /**
         * normalize the given path
-        * @param $path
+        * @param string $path
         * @return string
         */
        public function normalize($path) {
index 8c2ec057ca7bfdae03c2ca5c15231b2c5ce3f580..51454a7145869ed8e3ec56399a0e550ec8e00d9e 100644 (file)
@@ -273,7 +273,7 @@ class Scanner extends BasicEmitter {
         * @brief check if the file should be ignored when scanning
         * NOTE: files with a '.part' extension are ignored as well!
         *       prevents unfinished put requests to be scanned
-        * @param String $file
+        * @param string $file
         * @return boolean
         */
        public static function isPartialFile($file) {
index a4994e4dfb6084d90af6e0a8b3e75ba4ba90b660..22d15840c3201f3d882058efc1976f9863909eac 100644 (file)
@@ -245,7 +245,7 @@ class Filesystem {
        }
 
        /**
-        * @param $id
+        * @param string $id
         * @return Mount\Mount[]
         */
        public static function getMountByStorageId($id) {
@@ -256,7 +256,7 @@ class Filesystem {
        }
 
        /**
-        * @param $id
+        * @param int $id
         * @return Mount\Mount[]
         */
        public static function getMountByNumericId($id) {
index 833d4bd8d1cfa9bee9e43dc3efa0b2405918536b..666719da12debc83c2e7a6827c71c8f26b3a306a 100644 (file)
@@ -97,8 +97,8 @@ class Mapper
        }
 
        /**
-        * @param $path
-        * @param $root
+        * @param string $path
+        * @param string $root
         * @return false|string
         */
        public function stripRootFolder($path, $root) {
index 91460b72730cbf735ee865cdc6c98ad33f37067a..db1f4600c742ba5f2994792885d13429d15aa5c2 100644 (file)
@@ -33,7 +33,7 @@ class Manager {
        /**
         * Find the mount for $path
         *
-        * @param $path
+        * @param string $path
         * @return Mount
         */
        public function find($path) {
@@ -61,7 +61,7 @@ class Manager {
        /**
         * Find all mounts in $path
         *
-        * @param $path
+        * @param string $path
         * @return Mount[]
         */
        public function findIn($path) {
@@ -112,7 +112,7 @@ class Manager {
        /**
         * Find mounts by numeric storage id
         *
-        * @param string $id
+        * @param int $id
         * @return Mount[]
         */
        public function findByNumericId($id) {
index d9e0ddc2d610d17c6ab4e9a82c09d88ee01ac78d..1af34fc2be6dc406ce4bef1ea93ae79be0000b7d 100644 (file)
@@ -296,7 +296,7 @@ class Folder extends Node implements \OCP\Files\Folder {
        }
 
        /**
-        * @param $id
+        * @param int $id
         * @return \OC\Files\Node\Node[]
         */
        public function getById($id) {
index 8a263d4ce1efc333875bc53b67f129a7c13217a7..fef33cabd879f3a261a1c0926d46f591c074a3eb 100644 (file)
@@ -317,7 +317,7 @@ abstract class Common implements \OC\Files\Storage\Storage {
         * clean a path, i.e. remove all redundant '.' and '..'
         * making sure that it can't point to higher than '/'
         *
-        * @param $path The path to clean
+        * @param string $path The path to clean
         * @return string cleaned path
         */
        public function cleanPath($path) {
@@ -347,7 +347,7 @@ abstract class Common implements \OC\Files\Storage\Storage {
        /**
         * get the free space in the storage
         *
-        * @param $path
+        * @param string $path
         * @return int
         */
        public function free_space($path) {
index a878b2c5cf6c8d27798c9b1185f9aa257f8172af..c57c797f87a57c5c1f2babc63e2b5e2e99bc8bb7 100644 (file)
@@ -30,7 +30,7 @@ class Quota extends Wrapper {
        }
 
        /**
-        * @return quota value
+        * @return int quota value
         */
        public function getQuota() {
                return $this->quota;
index cd62511f0c1f53f743d4234c394c1cbbd39baabc..a0ad2b799abdb3852e2cadabef67a885ca17fe6f 100644 (file)
@@ -8,8 +8,8 @@
 class OC_Geo{
        /**
         * @brief returns the closest timezone to coordinates
-        * @param $latitude
-        * @param $longitude
+        * @param float $latitude
+        * @param float $longitude
         * @return mixed Closest timezone
         */
        public static function timezone($latitude, $longitude) {
index 5b291d7f2f69969533ec31090b243da75e05365a..845b3655bab97cedfb5dea9da1b47cfe8620459b 100644 (file)
@@ -58,7 +58,7 @@ class OC_Group {
 
        /**
         * @brief set the group backend
-        * @param  \OC_Group_Backend $backend  The backend to use for user managment
+        * @param \OC_Group_Backend $backend  The backend to use for user managment
         * @return bool
         */
        public static function useBackend($backend) {
index 7a766a6b35d7a9280246abc587c5083fdae4ebe0..553aae5429104f4ccbac8ac8bd3e344793fafea1 100644 (file)
@@ -29,7 +29,7 @@ class OC_Group_Dummy extends OC_Group_Backend {
        /**
         * @brief Try to create a new group
         * @param string $gid The name of the group to create
-        * @return true/false
+        * @return bool
         *
         * Trys to create a new group. If the group name already exists, false will
         * be returned.
@@ -45,8 +45,8 @@ class OC_Group_Dummy extends OC_Group_Backend {
 
        /**
         * @brief delete a group
-        * @param $gid gid of the group to delete
-        * @return true/false
+        * @param string $gid gid of the group to delete
+        * @return bool
         *
         * Deletes a group and removes it from the group_user-table
         */
@@ -61,9 +61,9 @@ class OC_Group_Dummy extends OC_Group_Backend {
 
        /**
         * @brief is user in group?
-        * @param $uid uid of the user
-        * @param $gid gid of the group
-        * @return true/false
+        * @param string $uid uid of the user
+        * @param string $gid gid of the group
+        * @return bool
         *
         * Checks whether the user is member of a group or not.
         */
@@ -77,9 +77,9 @@ class OC_Group_Dummy extends OC_Group_Backend {
 
        /**
         * @brief Add a user to a group
-        * @param $uid Name of the user to add to group
-        * @param $gid Name of the group in which add the user
-        * @return true/false
+        * @param string $uid Name of the user to add to group
+        * @param string $gid Name of the group in which add the user
+        * @return bool
         *
         * Adds a user to a group.
         */
@@ -98,9 +98,9 @@ class OC_Group_Dummy extends OC_Group_Backend {
 
        /**
         * @brief Removes a user from a group
-        * @param $uid NameUSER of the user to remove from group
-        * @param $gid Name of the group from which remove the user
-        * @return true/false
+        * @param string $uid Name of the user to remove from group
+        * @param string $gid Name of the group from which remove the user
+        * @return bool
         *
         * removes the user from a group.
         */
@@ -118,7 +118,7 @@ class OC_Group_Dummy extends OC_Group_Backend {
 
        /**
         * @brief Get all groups a user belongs to
-        * @param $uid Name of the user
+        * @param string $uid Name of the user
         * @return array an array of group names
         *
         * This function fetches all groups a user belongs to. It does not check
index 12be5421c1cfdc69f2097e85645777f96f5f6b89..cfcc0d245d16c8bca39adf4c8498df542f136a21 100644 (file)
@@ -28,8 +28,8 @@
 abstract class OC_Group_Example {
        /**
         * @brief Try to create a new group
-        * @param $gid The name of the group to create
-        * @return true/false
+        * @param string $gid The name of the group to create
+        * @return bool
         *
         * Trys to create a new group. If the group name already exists, false will
         * be returned.
@@ -38,8 +38,8 @@ abstract class OC_Group_Example {
 
        /**
         * @brief delete a group
-        * @param $gid gid of the group to delete
-        * @return true/false
+        * @param string $gid gid of the group to delete
+        * @return bool
         *
         * Deletes a group and removes it from the group_user-table
         */
@@ -47,9 +47,9 @@ abstract class OC_Group_Example {
 
        /**
         * @brief is user in group?
-        * @param $uid uid of the user
-        * @param $gid gid of the group
-        * @return true/false
+        * @param string $uid uid of the user
+        * @param string $gid gid of the group
+        * @return bool
         *
         * Checks whether the user is member of a group or not.
         */
@@ -57,9 +57,9 @@ abstract class OC_Group_Example {
 
        /**
         * @brief Add a user to a group
-        * @param $uid Name of the user to add to group
-        * @param $gid Name of the group in which add the user
-        * @return true/false
+        * @param string $uid Name of the user to add to group
+        * @param string $gid Name of the group in which add the user
+        * @return bool
         *
         * Adds a user to a group.
         */
@@ -67,9 +67,9 @@ abstract class OC_Group_Example {
 
        /**
         * @brief Removes a user from a group
-        * @param $uid NameUSER of the user to remove from group
-        * @param $gid Name of the group from which remove the user
-        * @return true/false
+        * @param string $uid Name of the user to remove from group
+        * @param string $gid Name of the group from which remove the user
+        * @return bool
         *
         * removes the user from a group.
         */
@@ -77,7 +77,7 @@ abstract class OC_Group_Example {
 
        /**
         * @brief Get all groups a user belongs to
-        * @param $uid Name of the user
+        * @param string $uid Name of the user
         * @return array an array of group names
         *
         * This function fetches all groups a user belongs to. It does not check
index ae95784608240ab1c21fc482eeca720b1fc9cf77..12d82f6fb45d9db64e362caeac828cc3fb20bbc7 100644 (file)
@@ -32,7 +32,7 @@ class OC_Helper {
 
        /**
         * @brief Creates an url using a defined route
-        * @param $route
+        * @param string $route
         * @param array $parameters
         * @return
         * @internal param array $args with param=>value, will be appended to the returned url
@@ -495,7 +495,7 @@ class OC_Helper {
        /**
         * detect if a given program is found in the search PATH
         *
-        * @param $name
+        * @param string $name
         * @param bool $path
         * @internal param string $program name
         * @internal param string $optional search path, defaults to $PATH
@@ -670,8 +670,8 @@ class OC_Helper {
        /**
         * Adds a suffix to the name in case the file exists
         *
-        * @param $path
-        * @param $filename
+        * @param string $path
+        * @param string $filename
         * @return string
         */
        public static function buildNotExistingFileName($path, $filename) {
@@ -682,8 +682,8 @@ class OC_Helper {
        /**
         * Adds a suffix to the name in case the file exists
         *
-        * @param $path
-        * @param $filename
+        * @param string $path
+        * @param string $filename
         * @return string
         */
        public static function buildNotExistingFileNameForView($path, $filename, \OC\Files\View $view) {
@@ -775,7 +775,7 @@ class OC_Helper {
        /**
         * @brief replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.
         *
-        * @param $string
+        * @param string $string
         * @param string $replacement The replacement string.
         * @param int $start If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string.
         * @param int $length Length of the part to be replaced
index 14aa64d12da4526a4c0a8b687499e77f9c2294a1..341bfaaf8189f3bce70e436005a3d6e777dc2a50 100644 (file)
@@ -424,7 +424,7 @@ class OC_Image {
        * @brief Loads an image from an open file handle.
        * It is the responsibility of the caller to position the pointer at the correct place and to close the handle again.
        * @param resource $handle
-       * @return An image resource or false on error
+       * @return resource|false An image resource or false on error
        */
        public function loadFromFileHandle($handle) {
                OC_Log::write('core', __METHOD__.'(): Trying', OC_Log::DEBUG);
index d7d43779d927a1b64e616f0da7f72f76cd5d430b..9417c32bc89d11b38763fb70fa5450784cb9cae7 100644 (file)
@@ -221,7 +221,7 @@ class OC_Installer{
        /**
         * @brief checks whether or not an app is installed
         * @param string $app app
-        * @return true/false
+        * @return bool
         *
         * Checks whether or not an app is installed, i.e. registered in apps table.
         */
@@ -313,7 +313,7 @@ class OC_Installer{
        /**
         * @brief Removes an app
         * @param string $name name of the application to remove
-        * @param $options array with options
+        * @param array $options options
         * @return boolean|null
         *
         * This function removes an app. $options is an associative array. The
index 9ab60e871d049bb43c83f36aa4cb77c3dd79bee7..c9d9e8131b1d5b84df850b593896b532150afea7 100644 (file)
@@ -183,7 +183,7 @@ class OC_L10N implements \OCP\IL10N {
         *
         * Parts of the code is copied from Habari:
         * https://github.com/habari/system/blob/master/classes/locale.php
-        * @param $string string
+        * @param string $string
         * @return string
         */
        protected function createPluralFormFunction($string){
index 8c65f3681718db28b7e3b74beefa9067adfa6a86..d0c3799b9c2f55e39ecb4bfea7e525982fe231e0 100644 (file)
@@ -20,8 +20,8 @@ class Factory {
 
        /**
         * get an L10N instance
-        * @param $app string
-        * @param $lang string|null
+        * @param string $app
+        * @param string|null $lang
         * @return \OC_L10N
         */
        public function get($app) {
index 2ec9a0978ad6bd55c71d1c8a42282f0f856a254f..98c825aafd80041e5e35fc2cafa5b48c7ee275ea 100644 (file)
@@ -333,7 +333,7 @@ class OC_Migrate{
 
        /**
        * @brief tries to extract the import zip
-       * @param $path string path to the zip
+       * @param string $path path to the zip
        * @return string path to extract location (with a trailing slash) or false on failure
        */
        static private function extractZip( $path ) {
@@ -536,7 +536,7 @@ class OC_Migrate{
        /**
        * @brief imports a new user
        * @param string $db string path to migration.db
-       * @param $info object of migration info
+       * @param object $info object of migration info
        * @param string|null|int $uid uid to use
        * @return array an array of apps with import statuses, or false on failure.
        */
index b0e7a4e9528630c16cb4de0a13b69fdee1878bb3..d3b2fe836a470e3f2a6a93ced6dce711d40523e6 100644 (file)
@@ -35,7 +35,7 @@ class OC_Migration_Content{
        /**
        * @brief sets up the
        * @param ZipArchive $zip ZipArchive object
-       * @param $db a database object (required for exporttype user)
+       * @param object $db a database object (required for exporttype user)
        * @return bool|null
        */
        public function __construct( $zip, $db=null ) {
@@ -45,11 +45,9 @@ class OC_Migration_Content{
 
        }
 
-       // @brief prepares the db
-       // @param $query the sql query to prepare
-
        /**
-        * @param string $query
+        * @brief prepares the db
+        * @param string $query the sql query to prepare
         */
        public function prepare( $query ) {
 
@@ -88,7 +86,7 @@ class OC_Migration_Content{
 
        /**
        * @brief copys rows to migration.db from the main database
-       * @param $options array of options.
+       * @param array $options array of options.
        * @return bool
        */
        public function copyRows( $options ) {
@@ -131,7 +129,7 @@ class OC_Migration_Content{
        /**
        * @brief saves a sql data set into migration.db
        * @param OC_DB_StatementWrapper $data a sql data set returned from self::prepare()->query()
-       * @param $options array of copyRows options
+       * @param array $options array of copyRows options
        * @return void
        */
        private function insertData( $data, $options ) {
@@ -170,8 +168,8 @@ class OC_Migration_Content{
        /**
        * @brief adds a directory to the zip object
        * @param boolean|string $dir string path of the directory to add
-       * @param $recursive bool
-       * @param $internaldir string path of folder to add dir to in zip
+       * @param bool $recursive
+       * @param string $internaldir path of folder to add dir to in zip
        * @return bool
        */
        public function addDir( $dir, $recursive=true, $internaldir='' ) {
index 211e8222145c29add0b4140e46318b835b78f905..aeb3d259b30c697296bedf7f5d88dedc8d693bff 100644 (file)
@@ -213,8 +213,8 @@ class OC_OCS {
        }
 
        /**
-        * @param $writer
-        * @param $data
+        * @param resource $writer
+        * @param array $data
         * @param string $node
         */
        public static function toXml($writer, $data, $node) {
index c8bb9425f1a1292f33d977c4c2096e6f8b25b0fa..3ced0af8ee129be2680857cf4a05bb861280f2fc 100644 (file)
@@ -57,8 +57,8 @@ class OC_OCS_Cloud {
         *   </quota>
         * </data>
         *
-        * @param $parameters object should contain parameter 'userid' which identifies
-        *                           the user from whom the information will be returned
+        * @param array $parameters should contain parameter 'userid' which identifies
+        *                          the user from whom the information will be returned
         */
        public static function getUser($parameters) {
                $return  = array();
index 0e3b85d5905b1de2e1fedaae9224d36c537098a7..567fe7f87feee820c08860e5ba9bac560a76144f 100644 (file)
@@ -26,7 +26,7 @@ class OC_OCS_Result{
 
        /**
         * create the OCS_Result object
-        * @param $data mixed the data to return
+        * @param mixed $data the data to return
         */
        public function __construct($data=null, $code=100, $message=null) {
                if ($data === null) {
@@ -42,7 +42,7 @@ class OC_OCS_Result{
 
        /**
         * optionally set the total number of items available
-        * @param $items int
+        * @param int $items
         */
        public function setTotalItems(int $items) {
                $this->items = $items;
@@ -50,7 +50,7 @@ class OC_OCS_Result{
 
        /**
         * optionally set the the number of items per page
-        * @param $items int
+        * @param int $items
         */
        public function setItemsPerPage(int $items) {
                $this->perPage = $items;
index 8b8930df9376a312660142039fe9f4e358180d92..fb8282747ebc4c02f22497540913f4a5511a391b 100644 (file)
@@ -95,7 +95,7 @@ class OC_OCSClient{
         * @return array an array of application data
         *
         * This function returns a list of all the applications on the OCS server
-        * @param $categories
+        * @param array|string $categories
         * @param int $page
         * @param string $filter
         */
index 941f9f26c6a550069c541389affa0e8eb7be41b8..bf8c04e099870fccbee89a7ec224ef746c14a126 100755 (executable)
@@ -191,7 +191,7 @@ class Preview {
        /**
         * @brief set the path of the file you want a thumbnail from
         * @param string $file
-        * @return $this
+        * @return object $this
         */
        public function setFile($file) {
                $this->file = $file;
@@ -217,7 +217,7 @@ class Preview {
         * @brief set the the max width of the preview
         * @param int $maxX
         * @throws \Exception
-        * @return $this
+        * @return \OC\Preview $this
         */
        public function setMaxX($maxX = 1) {
                if ($maxX <= 0) {
@@ -238,7 +238,7 @@ class Preview {
         * @brief set the the max height of the preview
         * @param int $maxY
         * @throws \Exception
-        * @return $this
+        * @return \OC\Preview $this
         */
        public function setMaxY($maxY = 1) {
                if ($maxY <= 0) {
@@ -258,7 +258,7 @@ class Preview {
        /**
         * @brief set whether or not scalingup is enabled
         * @param bool $scalingUp
-        * @return $this
+        * @return \OC\Preview $this
         */
        public function setScalingup($scalingUp) {
                if ($this->getMaxScaleFactor() === 1) {
@@ -750,7 +750,7 @@ class Preview {
        }
 
        /**
-        * @param $fileId
+        * @param int $fileId
         * @return string
         */
        private function buildCachePath($fileId) {
index 4905c0a787b8736d8ae9dfb0cc26a0b0d6010dbe..f976925fb2e0336e46f114fba0321203bcdc1236 100644 (file)
@@ -93,7 +93,7 @@ class OC_Response {
 
        /**
        * @brief Set reponse expire time
-       * @param $expires date-time when the response expires
+       * @param string|DateTime $expires date-time when the response expires
        *  string for DateInterval from now
        *  DateTime object when to expire response
        */
@@ -113,7 +113,7 @@ class OC_Response {
        /**
        * Checks and set ETag header, when the request matches sends a
        * 'not modified' response
-       * @param $etag token to use for modification check
+       * @param string $etag token to use for modification check
        */
        static public function setETagHeader($etag) {
                if (empty($etag)) {
@@ -131,7 +131,7 @@ class OC_Response {
        /**
        * Checks and set Last-Modified header, when the request matches sends a
        * 'not modified' response
-       * @param $lastModified time when the reponse was last modified
+       * @param int|DateTime|string $lastModified time when the reponse was last modified
        */
        static public function setLastModifiedHeader($lastModified) {
                if (empty($lastModified)) {
index df80facf9c15e6e09aeedaed244127853f952686..87030ad78530ee7da657efe64e9eb99e7cffe6df 100644 (file)
@@ -124,7 +124,7 @@ class Route extends SymfonyRoute implements IRoute {
        /**
         * The action to execute when this route matches, includes a file like
         * it is called directly
-        * @param $file
+        * @param string $file
         * @return void
         */
        public function actionInclude($file) {
index 44b0b94150871b2a5edf10956580fc9d5e6a6b34..a72ac2bb3f16f732f7b9f8a48bd673d4319e42db 100644 (file)
@@ -239,7 +239,7 @@ class Router implements IRouter {
 
        /**
         * To isolate the variable scope used inside the $file it is required in it's own method
-        * @param $file
+        * @param string $file
         */
        private function requireRouteFile($file) {
                require_once $file;
index 515ec85909aa1ff11146205c1bd156b930d574dd..68f4a35af19af9b994c2bae0111d9ff1eb7b2350 100644 (file)
@@ -25,13 +25,13 @@ class Helper extends \OC\Share\Constants {
 
        /**
         * Generate a unique target for the item
-        * @param string Item type
-        * @param string Item source
-        * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
-        * @param string User or group the item is being shared with
-        * @param string User that is the owner of shared item
-        * @param string The suggested target originating from a reshare (optional)
-        * @param int The id of the parent group share (optional)
+        * @param string $itemType
+        * @param string $itemSource
+        * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK
+        * @param string $shareWith User or group the item is being shared with
+        * @param string $uidOwner User that is the owner of shared item
+        * @param string $suggestedTarget The suggested target originating from a reshare (optional)
+        * @param int $groupParent The id of the parent group share (optional)
         * @return string Item target
         */
        public static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner,
@@ -142,9 +142,9 @@ class Helper extends \OC\Share\Constants {
 
        /**
         * Delete all reshares of an item
-        * @param int Id of item to delete
-        * @param bool If true, exclude the parent from the delete (optional)
-        * @param string The user that the parent was shared with (optinal)
+        * @param int $parent Id of item to delete
+        * @param bool $excludeParent If true, exclude the parent from the delete (optional)
+        * @param string $uidOwner The user that the parent was shared with (optinal)
         */
        public static function delete($parent, $excludeParent = false, $uidOwner = null) {
                $ids = array($parent);
index a33c71eedd2f80baf04a6907166a54b2a8b00a0a..9ac64d888ea8be7538ee15a00c588da8de015d86 100644 (file)
@@ -22,9 +22,9 @@
 namespace OC\Share;
 
 class Hooks extends \OC\Share\Constants {
-               /**
+       /**
         * Function that is called after a user is deleted. Cleans up the shares of that user.
-        * @param array arguments
+        * @param array $arguments
         */
        public static function post_deleteUser($arguments) {
                // Delete any items shared with the deleted user
@@ -42,7 +42,7 @@ class Hooks extends \OC\Share\Constants {
        /**
         * Function that is called after a user is added to a group.
         * TODO what does it do?
-        * @param array arguments
+        * @param array $arguments
         */
        public static function post_addToGroup($arguments) {
                // Find the group shares and check if the user needs a unique target
@@ -76,7 +76,7 @@ class Hooks extends \OC\Share\Constants {
 
        /**
         * Function that is called after a user is removed from a group. Shares are cleaned up.
-        * @param array arguments
+        * @param array $arguments
         */
        public static function post_removeFromGroup($arguments) {
                $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`'
@@ -95,7 +95,7 @@ class Hooks extends \OC\Share\Constants {
 
        /**
         * Function that is called after a group is removed. Cleans up the shares to that group.
-        * @param array arguments
+        * @param array $arguments
         */
        public static function post_deleteGroup($arguments) {
                $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?';
index 5110df0e571fba8ef38e166ac65c7c87c79c06a8..0cd36e97d54c1c387f67489fafde98bc86b50ba0 100644 (file)
@@ -50,8 +50,8 @@ class MailNotifications {
         * @brief inform users if a file was shared with them
         *
         * @param array $recipientList list of recipients
-        * @param type $itemSource shared item source
-        * @param type $itemType shared item type
+        * @param string $itemSource shared item source
+        * @param string $itemType shared item type
         * @return array list of user to whom the mail send operation failed
         */
        public function sendInternalShareMail($recipientList, $itemSource, $itemType) {
index 76abbf308460d076ad9ae5968e72c702f82c502c..91709902fffdf72ce000ec7a5dc0a9bf89aec62b 100644 (file)
@@ -18,8 +18,8 @@ class SearchResultSorter {
         * @param string $search the search term as was given by the user
         * @param string $key the array key containing the value that should be compared
         * against
-        * @param $encoding optional, encoding to use, defaults to UTF-8
-        * @param $log optional, an \OC\Log instance
+        * @param string $encoding optional, encoding to use, defaults to UTF-8
+        * @param \OC\Log $log optional
         */
        public function __construct($search, $key, \OC\Log $log = null, $encoding = 'UTF-8') {
                $this->encoding = $encoding;
index 211c7e7cb1cb984e2e4505423a0135beb24f9ce9..98275a59a6f74cb043f43081b09062a4817ccc0c 100644 (file)
@@ -254,12 +254,12 @@ class Share extends \OC\Share\Constants {
 
        /**
         * Get the items of item type shared with a user
-        * @param string Item type
-        * @param sting user id for which user we want the shares
-        * @param int Format (optional) Format type must be defined by the backend
-        * @param mixed Parameters (optional)
-        * @param int Number of items to return (optional) Returns all by default
-        * @param boolean include collections (optional)
+        * @param string $itemType
+        * @param string $user id for which user we want the shares
+        * @param int $format (optional) Format type must be defined by the backend
+        * @param mixed $parameters (optional)
+        * @param int $limit Number of items to return (optional) Returns all by default
+        * @param boolean $includeCollections (optional)
         * @return Return depends on format
         */
        public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE,
@@ -388,8 +388,8 @@ class Share extends \OC\Share\Constants {
 
        /**
         * resolves reshares down to the last real share
-        * @param $linkItem
-        * @return $fileOwner
+        * @param array $linkItem
+        * @return array file owner
         */
        public static function resolveReShare($linkItem)
        {
@@ -446,7 +446,7 @@ class Share extends \OC\Share\Constants {
         * @param string $uidOwner
         * @param boolean $includeCollections
         * @param boolean $checkExpireDate
-        * @return Return array of users
+        * @return array Return array of users
         */
        public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) {
 
@@ -1000,10 +1000,10 @@ class Share extends \OC\Share\Constants {
        /**
         * Get shared items from the database
         * @param string $itemType
-        * @param string Item source or target (optional)
+        * @param string $item Item source or target (optional)
         * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique
         * @param string $shareWith User or group the item is being shared with
-        * @param string uidOwner User that is the owner of shared items (optional)
+        * @param string $uidOwner User that is the owner of shared items (optional)
         * @param int $format Format to convert items to with formatItems() (optional)
         * @param mixed $parameters to pass to formatItems() (optional)
         * @param int $limit Number of items to return, -1 to return all matches (optional)
index 5b6072987ad54eb459f2beafd2b92f33a9942c57..3e8b73d55b0d5cea9b9bb2f81a64ef8147320e50 100644 (file)
@@ -167,7 +167,7 @@ class OC_SubAdmin{
 
        /**
         * @brief delete all SubAdmins by uid
-        * @param $parameters
+        * @param array $parameters
         * @return boolean
         */
        public static function post_deleteUser($parameters) {
@@ -178,7 +178,7 @@ class OC_SubAdmin{
 
        /**
         * @brief delete all SubAdmins by gid
-        * @param $parameters
+        * @param array $parameters
         * @return boolean
         */
        public static function post_deleteGroup($parameters) {
index 2e786e3fd7bc6e451b75b2f5027890587416ad1c..0b62caf2dd89102d280228878b9d9e3fc4bb7481 100644 (file)
@@ -393,7 +393,7 @@ class Tags implements \OCP\ITags {
        *
        * For hooking up on post_deleteUser
        *
-       * @param array
+       * @param array $arguments
        */
        public static function post_deleteUser($arguments) {
                // Find all objectid/tagId pairs.
index 0a32dc48f22727c2f1458598197be14d831e1ca3..3f5312c0a7b16894f087fff9c890e84cea994e90 100644 (file)
@@ -70,7 +70,7 @@ function mimetype_icon( $mimetype ) {
 /**
  * @brief make preview_icon available as a simple function
  * Returns the path to the preview of the image.
- * @param $path path of file
+ * @param string $path path of file
  * @return link to the preview
  *
  * For further information have a look at OC_Helper::previewIcon
index 8a3dd5e7fa90e5c0ed47f3e08634fa4062362ddf..900aa6a8f08d24d7659bdcbff1b251a7c1083c90 100644 (file)
@@ -53,13 +53,9 @@ abstract class ResourceLocator {
 
        /*
         * @brief append the $file resource if exist at $root
-        * @param $root path to check
-        * @param $file the filename
-        * @param $web base for path, default map $root to $webroot
-        */
-       /**
-        * @param string $file
-        * @param string|false $webroot
+        * @param string $root path to check
+        * @param string $file the filename
+        * @param string|null $webroot base for path, default map $root to $webroot
         */
        protected function appendIfExist($root, $file, $webroot = null) {
                if (is_file($root.'/'.$file)) {
index b7ac02a753d27f06474f48b1bad475f678d57890..0672ffc4a3d77641e42eec4cbbd703b7b15c0ef7 100644 (file)
@@ -98,7 +98,7 @@ class OC_TemplateLayout extends OC_Template {
        }
 
        /**
-        * @param $styles
+        * @param array $styles
         * @return array
         */
        static public function findStylesheetFiles($styles) {
@@ -116,7 +116,7 @@ class OC_TemplateLayout extends OC_Template {
        }
 
        /**
-        * @param $scripts
+        * @param array $scripts
         * @return array
         */
        static public function findJavascriptFiles($scripts) {
@@ -175,7 +175,7 @@ class OC_TemplateLayout extends OC_Template {
        }
 
        /**
-        * @param $files
+        * @param array $files
         * @return string
         */
        private static function hashScriptNames($files)
index a56b0fe3378040d3cc618d66e0cb862e042ed3e6..b37ef89d40d41e3b853e944b6c03c43c82e903b5 100644 (file)
@@ -30,7 +30,7 @@ class URLGenerator implements IURLGenerator {
 
        /**
         * @brief Creates an url using a defined route
-        * @param $route
+        * @param string $route
         * @param array $parameters
         * @internal param array $args with param=>value, will be appended to the returned url
         * @return string the url
index 284b35825985eb7ef7fadba9ac92eb4bdac9e108..747895a8a954ae1545689e2660219772cfe7d425 100644 (file)
@@ -57,9 +57,9 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief Create a new user
-        * @param $uid The username of the user to create
-        * @param $password The password of the new user
-        * @return true/false
+        * @param string $uid The username of the user to create
+        * @param string $password The password of the new user
+        * @return bool
         *
         * Creates a new user. Basic checking of username is done in OC_User
         * itself, not in its subclasses.
@@ -79,8 +79,8 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief delete a user
-        * @param $uid The username of the user to delete
-        * @return true/false
+        * @param string $uid The username of the user to delete
+        * @return bool
         *
         * Deletes a user
         */
@@ -98,9 +98,9 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief Set password
-        * @param $uid The username
-        * @param $password The new password
-        * @return true/false
+        * @param string $uid The username
+        * @param string $password The new password
+        * @return bool
         *
         * Change the password of a user
         */
@@ -119,9 +119,9 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief Set display name
-        * @param $uid The username
-        * @param $displayName The new display name
-        * @return true/false
+        * @param string $uid The username
+        * @param string $displayName The new display name
+        * @return bool
         *
         * Change the display name of a user
         */
@@ -139,7 +139,7 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief get display name of the user
-        * @param $uid user ID of the user
+        * @param string $uid user ID of the user
         * @return string display name
         */
        public function getDisplayName($uid) {
@@ -169,8 +169,8 @@ class OC_User_Database extends OC_User_Backend {
 
        /**
         * @brief Check if the password is correct
-        * @param $uid The username
-        * @param $password The password
+        * @param string $uid The username
+        * @param string $password The password
         * @return string
         *
         * Check if the password is correct without logging in the user
index e6e2744b4055c7ca2375a8cd179b7f68fa550c4d..4bf3652330e8484f55aafa749e2f0899b21ed797 100644 (file)
@@ -28,9 +28,9 @@
 abstract class OC_User_Example extends OC_User_Backend {
        /**
                * @brief Create a new user
-               * @param $uid The username of the user to create
-               * @param $password The password of the new user
-               * @return true/false
+               * @param string $uid The username of the user to create
+               * @param string $password The password of the new user
+               * @return bool
                *
                * Creates a new user. Basic checking of username is done in OC_User
                * itself, not in its subclasses.
@@ -39,9 +39,9 @@ abstract class OC_User_Example extends OC_User_Backend {
 
        /**
                * @brief Set password
-               * @param $uid The username
-               * @param $password The new password
-               * @return true/false
+               * @param string $uid The username
+               * @param string $password The new password
+               * @return bool
                *
                * Change the password of a user
                */
@@ -49,8 +49,8 @@ abstract class OC_User_Example extends OC_User_Backend {
 
        /**
                * @brief Check if the password is correct
-               * @param $uid The username
-               * @param $password The password
+               * @param string $uid The username
+               * @param string $password The password
                * @return string
                *
                * Check if the password is correct without logging in the user
@@ -60,7 +60,7 @@ abstract class OC_User_Example extends OC_User_Backend {
 
        /**
                * @brief get the user's home directory
-               * @param $uid The username
+               * @param string $uid The username
                * @return string
                *
                * get the user's home directory
index 806378a7c2cf3eae9b18fe988483e2740c617610..67f7156b4982d91fc47d5e75ca5c6df82a650e22 100644 (file)
@@ -27,7 +27,7 @@
 class OC_User_HTTP extends OC_User_Backend {
        /**
         * split http://user@host/path into a user and url part
-        * @param string path
+        * @param string $url
         * @return array
         */
        private function parseUrl($url) {
@@ -46,7 +46,7 @@ class OC_User_HTTP extends OC_User_Backend {
 
        /**
         * check if an url is a valid login
-        * @param string url
+        * @param string $url
         * @return boolean
         */
        private function matchUrl($url) {
@@ -55,8 +55,8 @@ class OC_User_HTTP extends OC_User_Backend {
 
        /**
         * @brief Check if the password is correct
-        * @param $uid The username
-        * @param $password The password
+        * @param string $uid The username
+        * @param string $password The password
         * @return string
         *
         * Check if the password is correct without logging in the user
index 80da765cd9fd25ac7ad0e05e87f64dcfcc108a7b..e130e5b569c15746f7a32b1b30ee0ae022893cb9 100644 (file)
@@ -30,17 +30,13 @@ interface OC_User_Interface {
        *
        * Returns the supported actions as int to be
        * compared with OC_USER_BACKEND_CREATE_USER etc.
-       * @return boolean
        */
        public function implementsActions($actions);
 
        /**
        * @brief delete a user
-       * @param $uid The username of the user to delete
-       * @return true/false
-       *
-       * Deletes a user
-       * @return boolean
+       * @param string $uid The username of the user to delete
+       * @return bool
        */
        public function deleteUser($uid);
 
@@ -61,8 +57,8 @@ interface OC_User_Interface {
 
        /**
         * @brief get display name of the user
-        * @param $uid user ID of the user
-        * @return display name
+        * @param string $uid user ID of the user
+        * @return string display name
         */
        public function getDisplayName($uid);
 
index f3fa7b1f2209f0914dbe053545b02a355c1576dd..1c3177af4351f7cece73a9edcca220d5aa377b0d 100755 (executable)
@@ -818,8 +818,8 @@ class OC_Util {
         * This function is used to sanitize HTML and should be applied on any
         * string or array of strings before displaying it on a web page.
         *
-        * @param string|array of strings
-        * @return array an array of sanitized strings or a single sanitized string, depends on the input parameter.
+        * @param string|array &$value
+        * @return string|array an array of sanitized strings or a single sanitized string, depends on the input parameter.
         */
        public static function sanitizeHTML( &$value ) {
                if (is_array($value)) {
@@ -1028,8 +1028,8 @@ class OC_Util {
 
        /**
         * @brief Generates a cryptographic secure pseudo-random string
-        * @param Int $length of the random string
-        * @return String
+        * @param int $length of the random string
+        * @return string
         * Please also update secureRNGAvailable if you change something here
         */
        public static function generateRandomBytes($length = 30) {
@@ -1287,7 +1287,7 @@ class OC_Util {
 
        /**
         * Returns whether the given file name is valid
-        * @param $file string file name to check
+        * @param string $file file name to check
         * @return bool true if the file name is valid, false otherwise
         */
        public static function isValidFileName($file) {
index 20cacd926ba538e9ef2fd94d5a8e4ba2295a0cdd..cb556e07c9e7830bef24b670bf5b24b33eefc8a5 100644 (file)
@@ -89,7 +89,7 @@ class OC_VObject{
 
        /**
         * Constructor
-        * @param Sabre\VObject\Component or string
+        * @param Sabre\VObject\Component|string $vobject_or_name
         */
        public function __construct($vobject_or_name) {
                if (is_object($vobject_or_name)) {
@@ -101,7 +101,7 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param $item
+        * @param \OC_VObject|\Sabre\VObject\Component $item
         * @param null $itemValue
         */
        public function add($item, $itemValue = null) {
@@ -138,7 +138,7 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param mixed  $name
+        * @param mixed $name
         * @param string $string
         */
        public function setString($name, $string) {
@@ -175,7 +175,7 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param $name
+        * @param string $name
         * @return string
         */
        public function getAsString($name) {
@@ -186,7 +186,7 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param $name
+        * @param string $name
         * @return array
         */
        public function getAsArray($name) {
@@ -200,7 +200,7 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param $name
+        * @param string $name
         * @return array|OC_VObject|\Sabre\VObject\Property
         */
        public function &__get($name) {
@@ -242,8 +242,8 @@ class OC_VObject{
 
        /**
         * @todo Write documentation
-        * @param $function
-        * @param $arguments
+        * @param callable $function
+        * @param array $arguments
         * @return mixed
         */
        public function __call($function, $arguments) {
index 96162299ec492ea3ab42265a0df3a32c5d67550b..bef4e96ae02d0a5e605962df01646328416d5e2d 100644 (file)
@@ -36,7 +36,7 @@ namespace OCP;
 class App {
        /**
         * Makes ownCloud aware of this app
-        * @param array with all information
+        * @param array $data with all information
         * @return boolean
         *
         * @deprecated This method is deprecated. Do not call it anymore.
@@ -49,7 +49,7 @@ class App {
 
        /**
         * Adds an entry to the navigation
-        * @param array containing the data
+        * @param array $data containing the data
         * @return boolean
         *
         * This function adds a new entry to the navigation visible to users. $data
@@ -70,7 +70,7 @@ class App {
 
        /**
         * Marks a navigation entry as active
-        * @param string id of the entry
+        * @param string $id id of the entry
         * @return boolean
         *
         * This function sets a navigation entry as active and removes the 'active'
@@ -83,8 +83,8 @@ class App {
 
        /**
         * Register a Configuration Screen that should appear in the personal settings section.
-        * @param $app string appid
-        * @param $page string page to be included
+        * @param string $app appid
+        * @param string $page page to be included
         * @return void
        */
        public static function registerPersonal( $app, $page ) {
index 1832f766ea3ab334d40b51b3a239328aea73857c..562228e1e52f3e291d4245bda2cd45e3a453b913 100644 (file)
@@ -94,7 +94,7 @@ class BackgroundJob {
        /**
         * @deprecated
         * gets all regular tasks
-        * @return associative array
+        * @return array
         *
         * key is string "$klass-$method", value is array( $klass, $method )
         */
@@ -115,7 +115,7 @@ class BackgroundJob {
         * @deprecated
         * Gets one queued task
         * @param int $id ID of the task
-        * @return BackgroundJob\IJob array
+        * @return BackgroundJob\IJob|null
         */
        public static function findQueuedTask($id) {
                $jobList = \OC::$server->getJobList();
index c9b546605b8cd5ce60caf9b6be060997b87cce98..366b0e373683bc940da2e2ec0049dc9483eb3a3f 100644 (file)
@@ -12,7 +12,7 @@ interface IJobList {
        /**
         * Add a job to the list
         *
-        * @param \OCP\BackgroundJob\IJob |string $job
+        * @param \OCP\BackgroundJob\IJob|string $job
         * @param mixed $argument The argument to be passed to $job->run() when the job is exectured
         * @param string $job
         * @return void
@@ -22,7 +22,7 @@ interface IJobList {
        /**
         * Remove a job from the list
         *
-        * @param IJob $job
+        * @param \OCP\BackgroundJob\IJob|string $job
         * @param mixed $argument
         * @return void
         */
@@ -31,7 +31,7 @@ interface IJobList {
        /**
         * check if a job is in the list
         *
-        * @param $job
+        * @param \OCP\BackgroundJob\IJob|string $job
         * @param mixed $argument
         * @return bool
         */
index 70c67c757315ab6a151de4ec3413207ed4c776be..0d12e91c67fee83e11fff10936421cef9d3db21d 100644 (file)
@@ -98,7 +98,7 @@ namespace OCP {
                 * This function can be used to delete the contact identified by the given id
                 *
                 * @param object $id the unique identifier to a contact
-                * @param $address_book_key
+                * @param string $address_book_key
                 * @return bool successful or not
                 */
                public static function delete($id, $address_book_key) {
@@ -111,7 +111,7 @@ namespace OCP {
                 * Otherwise the contact will be updated by replacing the entire data set.
                 *
                 * @param array $properties this array if key-value-pairs defines a contact
-                * @param $address_book_key string to identify the address book in which the contact shall be created or updated
+                * @param string $address_book_key identifier of the address book in which the contact shall be created or updated
                 * @return array an array representing the contact just created or updated
                 */
                public static function createOrUpdate($properties, $address_book_key) {
index cb876b4d1f9f1a66a269812da79abba01fb8619e..ba3a4724ce012fe3ad13d24bfe2afbf44f1462e6 100644 (file)
@@ -50,7 +50,7 @@ class DB {
        /**
         * Insert a row if a matching row doesn't exists.
         * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix
-        * @param $input array
+        * @param array $input
         *
         * The input array if in the form:
         *
index 43fa32556de5a8f284d6022035b9c45a5c9666b8..fc7e8e79fed64665f0f501e291e605fad71ad20b 100644 (file)
@@ -15,7 +15,7 @@ interface IAvatar {
 
        /**
         * @brief get the users avatar
-        * @param $size integer size in px of the avatar, avatars are square, defaults to 64
+        * @param int $size size in px of the avatar, avatars are square, defaults to 64
         * @return boolean|\OC_Image containing the avatar or false if there's no image
         */
        function get($size = 64);
index 9b185ae0467b90897327993fd00bf9e5b7f62d35..b09b456a0daa2780ad2570fc2d27428028585469 100644 (file)
@@ -16,7 +16,7 @@ interface IAvatarManager {
        /**
         * @brief return a user specific instance of \OCP\IAvatar
         * @see \OCP\IAvatar
-        * @param $user string the ownCloud user id
+        * @param string $user the ownCloud user id
         * @return \OCP\IAvatar
         */
        function getAvatar($user);
index 656b5e7e5b299723c76f6737f3a1a262d09509a5..3e6624e07e942079f2c2d771cc4f884d5203b76d 100644 (file)
@@ -52,8 +52,8 @@ interface IDBConnection {
 
        /**
         * Insert a row if a matching row doesn't exists.
-        * @param string The table name (will replace *PREFIX*) to perform the replace on.
-        * @param array
+        * @param string $table The table name (will replace *PREFIX*) to perform the replace on.
+        * @param array $input
         *
         * The input array if in the form:
         *
index 1388274c21af4cd2e15379b2e1edafad2293ccf0..c228be6a0a34799b6a334c3127fac6821eae0f80 100644 (file)
@@ -53,7 +53,7 @@ interface IL10N {
         * Localization
         * @param string $type Type of localization
         * @param array $data parameters for this localization
-        * @return String or false
+        * @return string|false
         *
         * Returns the localized data.
         *
index d5610e762a82f0e94b701834155ce954448d41dc..f511e7af72097e28578bb92c926033623f07ed43 100644 (file)
@@ -26,7 +26,7 @@ interface IRoute {
         * The action to execute when this route matches, includes a file like
         * it is called directly
         *
-        * @param $file
+        * @param string $file
         * @return void
         */
        public function actionInclude($file);
index 018386253bcfafd1ec1352bc7fe32e3f5fe4e7b3..33c5069ac577a09a8d7f525505693f0c78ef21b5 100644 (file)
@@ -92,13 +92,13 @@ class Share extends \OC\Share\Constants {
 
        /**
         * Get the items of item type shared with a user
-        * @param string Item type
-        * @param sting user id for which user we want the shares
-        * @param int Format (optional) Format type must be defined by the backend
-        * @param mixed Parameters (optional)
-        * @param int Number of items to return (optional) Returns all by default
-        * @param bool include collections (optional)
-        * @return Return depends on format
+        * @param string $itemType
+        * @param string $user for which user we want the shares
+        * @param int $format (optional) Format type must be defined by the backend
+        * @param mixed $parameters (optional)
+        * @param int $limit Number of items to return (optional) Returns all by default
+        * @param bool $includeCollections (optional)
+        * @return mixed Return depends on format
         */
        public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE,
                $parameters = null, $limit = -1, $includeCollections = false) {
@@ -111,8 +111,8 @@ class Share extends \OC\Share\Constants {
         * @param string $itemType
         * @param string $itemTarget
         * @param int $format (optional) Format type must be defined by the backend
-        * @param mixed Parameters (optional)
-        * @param bool include collections (optional)
+        * @param mixed $parameters (optional)
+        * @param bool $includeCollections (optional)
         * @return mixed Return depends on format
         */
        public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE,
@@ -168,8 +168,8 @@ class Share extends \OC\Share\Constants {
 
        /**
         * resolves reshares down to the last real share
-        * @param $linkItem
-        * @return $fileOwner
+        * @param array $linkItem
+        * @return array file owner
         */
        public static function resolveReShare($linkItem) {
                return \OC\Share\Share::resolveReShare($linkItem);
@@ -213,7 +213,7 @@ class Share extends \OC\Share\Constants {
         * @param string $uidOwner
         * @param bool $includeCollections
         * @param bool $checkExpireDate
-        * @return Return array of users
+        * @return array Return array of users
         */
        public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) {
                return \OC\Share\Share::getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections, $checkExpireDate);
index 6cc984b12d5f03ed119877db758553797133a261..b1264e0c3ad2c90e71f4c9332eebcc2b06b8acca 100644 (file)
@@ -33,8 +33,8 @@ namespace OCP;
 
 /**
  * Make OC_Helper::imagePath available as a simple function
- * @param string app
- * @param string image
+ * @param string $app
+ * @param string $image
  * @return string to the image
  *
  * @see OC_Helper::imagePath
@@ -46,7 +46,7 @@ function image_path( $app, $image ) {
 
 /**
  * Make OC_Helper::mimetypeIcon available as a simple function
- * @param string mimetype
+ * @param string $mimetype
  * @return string to the image of this file type.
  */
 function mimetype_icon( $mimetype ) {
@@ -55,7 +55,7 @@ function mimetype_icon( $mimetype ) {
 
 /**
  * Make preview_icon available as a simple function
- * @param string path of file
+ * @param string $path path to file
  * @return string to the preview of the image
  */
 function preview_icon( $path ) {
@@ -76,7 +76,7 @@ function publicPreview_icon ( $path, $token ) {
 /**
  * Make OC_Helper::humanFileSize available as a simple function
  * Example: 2048 to 2 kB.
- * @param int size in bytes
+ * @param int $size in bytes
  * @return string size as string
  */
 function human_file_size( $bytes ) {
@@ -86,8 +86,8 @@ function human_file_size( $bytes ) {
 
 /**
  * Return the relative date in relation to today. Returns something like "last hour" or "two month ago"
- * @param int unix timestamp
- * @param boolean date only
+ * @param int $timestamp unix timestamp
+ * @param boolean $dateOnly
  * @return OC_L10N_String human readable interpretation of the timestamp
  */
 function relative_modified_date( $timestamp, $dateOnly = false ) {
@@ -98,7 +98,7 @@ function relative_modified_date( $timestamp, $dateOnly = false ) {
 /**
  * Return a human readable outout for a file size.
  * @deprecated human_file_size() instead
- * @param integer size of a file in byte
+ * @param integer $bytes size of a file in byte
  * @return string human readable interpretation of a file size
  */
 function simple_file_size($bytes) {
@@ -108,9 +108,9 @@ function simple_file_size($bytes) {
 
 /**
  * Generate html code for an options block.
- * @param $options the options
- * @param $selected which one is selected?
- * @param array the parameters
+ * @param array $options the options
+ * @param mixed $selected which one is selected?
+ * @param array $params the parameters
  * @return string html options
  */
 function html_select_options($options, $selected, $params=array()) {
index e79ad4e71901d6c17424befd1edb8981fe35c139..925410d37d54946122dcb1dc40bbc473ed30cf06 100644 (file)
@@ -45,9 +45,9 @@ class User {
 
        /**
         * Get a list of all users
-        * @param string search pattern
-        * @param integer $limit
-        * @param integer $offset
+        * @param string $search search pattern
+        * @param int|null $limit
+        * @param int|null $offset
         * @return array an array of all uids
         */
        public static function getUsers( $search = '', $limit = null, $offset = null ) {
@@ -56,7 +56,7 @@ class User {
 
        /**
         * Get the user display name of the user currently logged in.
-        * @param string user id or null for current user
+        * @param string|null $user user id or null for current user
         * @return string display name
         */
        public static function getDisplayName( $user = null ) {
@@ -65,9 +65,9 @@ class User {
 
        /**
         * Get a list of all display names and user ids.
-        * @param string search pattern
-        * @param int limit
-        * @param int offset
+        * @param string $search search pattern
+        * @param int|null $limit
+        * @param int|null $offset
         * @return array an array of all display names (value) and the correspondig uids (key)
         */
        public static function getDisplayNames( $search = '', $limit = null, $offset = null ) {
index 0ca6f7928c3e725a21226d0b4632c1cc9044e722..8aeb03aef8ee6f41f9a25d8479af7f11f5d02e5a 100644 (file)
@@ -203,7 +203,7 @@ class Util {
 
        /**
         * Creates an url using a defined route
-        * @param $route
+        * @param string $route
         * @param array $parameters
         * @internal param array $args with param=>value, will be appended to the returned url
         * @return string the url
@@ -380,8 +380,8 @@ class Util {
         * This function is used to sanitize HTML and should be applied on any
         * string or array of strings before displaying it on a web page.
         *
-        * @param string|array of strings
-        * @return array an array of sanitized strings or a single sinitized string, depends on the input parameter.
+        * @param string|array $value
+        * @return string|array an array of sanitized strings or a single sinitized string, depends on the input parameter.
         */
        public static function sanitizeHTML( $value ) {
                return(\OC_Util::sanitizeHTML($value));
@@ -458,7 +458,7 @@ class Util {
         *
         * @param string $dir the current folder where the user currently operates
         * @param int $free the number of bytes free on the storage holding $dir, if not set this will be received from the storage directly
-        * @return number of bytes representing
+        * @return int number of bytes representing
         */
        public static function maxUploadFilesize($dir, $free = null) {
                return \OC_Helper::maxUploadFilesize($dir, $free);
@@ -476,7 +476,7 @@ class Util {
        /**
         * Calculate PHP upload limit
         *
-        * @return number of bytes representing
+        * @return int number of bytes representing
         */
        public static function uploadLimit() {
                return \OC_Helper::uploadLimit();
@@ -484,7 +484,7 @@ class Util {
 
        /**
         * Returns whether the given file name is valid
-        * @param $file string file name to check
+        * @param string $file file name to check
         * @return bool true if the file name is valid, false otherwise
         */
        public static function isValidFileName($file) {
@@ -493,8 +493,8 @@ class Util {
 
        /**
         * @brief Generates a cryptographic secure pseudo-random string
-        * @param Int $length of the random string
-        * @return String
+        * @param int $length of the random string
+        * @return string
         */
        public static function generateRandomBytes($length = 30) {
                return \OC_Util::generateRandomBytes($length);