Completed
Pull Request — master (#27792)
by Thomas
10:10
created
apps/dav/lib/Connector/LegacyDAVACL.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -49,6 +49,10 @@
 block discarded – undo
49 49
 		);
50 50
 	}
51 51
 
52
+	/**
53
+	 * @param string $principal
54
+	 * @param boolean $toV2
55
+	 */
52 56
 	private function convertPrincipal($principal, $toV2) {
53 57
 		list(, $name) = URLUtil::splitPath($principal);
54 58
 		if ($toV2) {
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/CalDavBackend.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,6 +267,9 @@  discard block
 block discarded – undo
267 267
 		return array_values($calendars);
268 268
 	}
269 269
 
270
+	/**
271
+	 * @param string $principalUri
272
+	 */
270 273
 	public function getUsersOwnCalendars($principalUri) {
271 274
 		$principalUri = $this->convertPrincipal($principalUri, true);
272 275
 		$fields = array_values($this->propertyMap);
@@ -1262,7 +1265,7 @@  discard block
 block discarded – undo
1262 1265
 	 * @param string $principalUri
1263 1266
 	 * @param string $uri
1264 1267
 	 * @param array $properties
1265
-	 * @return mixed
1268
+	 * @return integer
1266 1269
 	 */
1267 1270
 	function createSubscription($principalUri, $uri, array $properties) {
1268 1271
 
@@ -1665,6 +1668,9 @@  discard block
 block discarded – undo
1665 1668
 		return $this->sharingBackend->applyShareAcl($resourceId, $acl);
1666 1669
 	}
1667 1670
 
1671
+	/**
1672
+	 * @param boolean $toV2
1673
+	 */
1668 1674
 	private function convertPrincipal($principalUri, $toV2 = null) {
1669 1675
 		if ($this->principalBackend->getPrincipalPrefix() === 'principals') {
1670 1676
 			list(, $name) = URLUtil::splitPath($principalUri);
Please login to merge, or discard this patch.