Completed
Pull Request — master (#29107)
by Piotr
08:44
created
lib/private/Group/GroupEntity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
 
41 41
 	public function __construct() { }
42 42
 
43
+	/**
44
+	 * @param string $gid
45
+	 */
43 46
 	public function setGroupId($gid) {
44 47
 		parent::setter('groupId', [$gid]);
45 48
 	}
Please login to merge, or discard this patch.
lib/private/Group/Manager.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,6 +122,9 @@  discard block
 block discarded – undo
122 122
 		$this->clearCaches();
123 123
 	}
124 124
 
125
+	/**
126
+	 * @param string $backendClass
127
+	 */
125 128
 	public function getBackend($backendClass) {
126 129
 		return isset($this->backends[$backendClass]) ? $this->backends[$backendClass] : null;
127 130
 	}
@@ -150,7 +153,7 @@  discard block
 block discarded – undo
150 153
 	/**
151 154
 	 * @param string $gid
152 155
 	 * @param string $displayName
153
-	 * @return \OCP\IGroup
156
+	 * @return null|Group
154 157
 	 */
155 158
 	protected function getGroupObject($gid, $displayName = null) {
156 159
 		$backends = [];
Please login to merge, or discard this patch.