x Sorry, these patches are not available anymore due to data migration. Please run a fresh inspection.
Completed
Push — master ( deca08...a0e2ea )
by Jan-Christoph
08:28
created
apps/dav/lib/connector/sabre/custompropertiesbackend.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 	private $cache = [];
76 76
 
77 77
 	/**
78
-	 * @param Tree $tree node tree
78
+	 * @param ObjectTree $tree node tree
79 79
 	 * @param IDBConnection $connection database connection
80 80
 	 * @param IUser $user owner of the tree and properties
81 81
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/connector/sabre/filesreportplugin.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	private $userFolder;
89 89
 
90 90
 	/**
91
-	 * @param Tree $tree
91
+	 * @param ObjectTree $tree
92 92
 	 * @param View $view
93 93
 	 */
94 94
 	public function __construct(Tree $tree,
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 * This will be used in the {DAV:}supported-report-set property.
134 134
 	 *
135 135
 	 * @param string $uri
136
-	 * @return array
136
+	 * @return string[]
137 137
 	 */
138 138
 	public function getSupportedReportSet($uri) {
139 139
 		return [self::REPORT_NAME];
@@ -264,6 +264,7 @@  discard block
 block discarded – undo
264 264
 	 *
265 265
 	 * @param string[] $requestedProps requested properties
266 266
 	 * @param Node[] nodes nodes for which to fetch and prepare responses
267
+	 * @param Node[] $nodes
267 268
 	 * @return Response[]
268 269
 	 */
269 270
 	public function prepareResponses($requestedProps, $nodes) {
Please login to merge, or discard this patch.
apps/dav/lib/connector/sabre/objecttree.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 	}
56 56
 
57 57
 	/**
58
-	 * @param \Sabre\DAV\INode $rootNode
58
+	 * @param Directory $rootNode
59 59
 	 * @param \OC\Files\View $view
60 60
 	 * @param  \OCP\Files\Mount\IMountManager $mountManager
61 61
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/connector/sabre/tagsplugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	private $tree;
47 47
 
48 48
 	/**
49
-	 * @param \Sabre\DAV\Tree $tree tree
49
+	 * @param ObjectTree $tree tree
50 50
 	 */
51 51
 	public function __construct(Tree $tree) {
52 52
 		$this->tree = $tree;
Please login to merge, or discard this patch.
apps/federation/lib/dbhandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,8 +271,8 @@
 block discarded – undo
271 271
 	}
272 272
 
273 273
 	/**
274
-	 * @param $username
275
-	 * @param $password
274
+	 * @param string $username
275
+	 * @param string $password
276 276
 	 * @return bool
277 277
 	 */
278 278
 	public function auth($username, $password) {
Please login to merge, or discard this patch.
apps/files_sharing/api/sharees.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@
 block discarded – undo
327 327
 	 * split user and remote from federated cloud id
328 328
 	 *
329 329
 	 * @param string $address federated share address
330
-	 * @return array [user, remoteURL]
330
+	 * @return string[] [user, remoteURL]
331 331
 	 * @throws \Exception
332 332
 	 */
333 333
 	public function splitUserRemote($address) {
Please login to merge, or discard this patch.
lib/private/allconfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 	 * Looks up a system wide defined value
112 112
 	 *
113 113
 	 * @param string $key the key of the value, under which it was saved
114
-	 * @param mixed $default the default value to be returned if the value isn't set
114
+	 * @param string $default the default value to be returned if the value isn't set
115 115
 	 * @return mixed the value or $default
116 116
 	 */
117 117
 	public function getSystemValue($key, $default = '') {
Please login to merge, or discard this patch.
lib/private/appframework/http.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 
111 111
 	/**
112 112
 	 * Gets the correct header
113
-	 * @param Http::CONSTANT $status the constant from the Http class
113
+	 * @param integer $status the constant from the Http class
114 114
 	 * @param \DateTime $lastModified formatted last modified date
115 115
 	 * @param string $ETag the etag
116 116
 	 * @return string
Please login to merge, or discard this patch.
lib/private/appframework/utility/controllermethodreflector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
 
48 48
 	/**
49
-	 * @param object $object an object or classname
49
+	 * @param \OCP\AppFramework\Controller $object an object or classname
50 50
 	 * @param string $method the method which we want to inspect
51 51
 	 */
52 52
 	public function reflect($object, $method){
Please login to merge, or discard this patch.