Completed
Push — stable8.1 ( 7a1b8f...6080a3 )
by
unknown
107:52
created
tests/lib/files/node/node.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 		$this->user = new \OC\User\User('', new \Test\Util\User\Dummy);
19 19
 	}
20 20
 
21
+	/**
22
+	 * @return \OC\Files\Storage\Storage
23
+	 */
21 24
 	protected function getMockStorage() {
22 25
 		$storage = $this->getMock('\OCP\Files\Storage');
23 26
 		$storage->expects($this->any())
Please login to merge, or discard this patch.
tests/lib/files/node/file.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 		$this->user = new \OC\User\User('', new \Test\Util\User\Dummy);
19 19
 	}
20 20
 
21
+	/**
22
+	 * @return \OC\Files\Storage\Storage
23
+	 */
21 24
 	protected function getMockStorage() {
22 25
 		$storage = $this->getMock('\OCP\Files\Storage');
23 26
 		$storage->expects($this->any())
Please login to merge, or discard this patch.
tests/lib/files/node/folder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 		$this->user = new \OC\User\User('', new \Test\Util\User\Dummy);
19 19
 	}
20 20
 
21
+	/**
22
+	 * @return \OC\Files\Storage\Storage
23
+	 */
21 24
 	protected function getMockStorage() {
22 25
 		$storage = $this->getMock('\OCP\Files\Storage');
23 26
 		$storage->expects($this->any())
Please login to merge, or discard this patch.
apps/files_versions/tests/versions.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -759,6 +759,10 @@  discard block
 block discarded – undo
759 759
 		);
760 760
 	}
761 761
 
762
+	/**
763
+	 * @param OC\Files\View $view
764
+	 * @param string $path
765
+	 */
762 766
 	private function createAndCheckVersions($view, $path) {
763 767
 		$view->file_put_contents($path, 'test file');
764 768
 		$view->file_put_contents($path, 'version 1');
@@ -782,7 +786,6 @@  discard block
 block discarded – undo
782 786
 	/**
783 787
 	 * @param string $user
784 788
 	 * @param bool $create
785
-	 * @param bool $password
786 789
 	 */
787 790
 	public static function loginHelper($user, $create = false) {
788 791
 
Please login to merge, or discard this patch.
apps/provisioning_api/lib/users.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -470,7 +470,7 @@
 block discarded – undo
470 470
 	/**
471 471
 	 * @param string $userId
472 472
 	 * @param array $data
473
-	 * @return mixed
473
+	 * @return string
474 474
 	 * @throws \OCP\Files\NotFoundException
475 475
 	 */
476 476
 	private static function fillStorageInfo($userId, $data) {
Please login to merge, or discard this patch.
apps/user_ldap/lib/user/user.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -369,6 +369,7 @@
 block discarded – undo
369 369
 	 * already. If not, it will marked like this, because it is expected that
370 370
 	 * the method will be run, when false is returned.
371 371
 	 * @param string email | quota | avatar (can be extended)
372
+	 * @param string $feature
372 373
 	 * @return bool
373 374
 	 */
374 375
 	private function wasRefreshed($feature) {
Please login to merge, or discard this patch.
lib/private/connector/sabre/auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
 
151 151
 	/**
152 152
 	 * @param \Sabre\DAV\Server $server
153
-	 * @param $realm
153
+	 * @param string $realm
154 154
 	 * @return bool
155 155
 	 */
156 156
 	private function auth(\Sabre\DAV\Server $server, $realm) {
Please login to merge, or discard this patch.
lib/private/connector/sabre/node.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 	/**
185 185
 	 * Returns the size of the node, in bytes
186 186
 	 *
187
-	 * @return int|float
187
+	 * @return integer
188 188
 	 */
189 189
 	public function getSize() {
190 190
 		return $this->info->getSize();
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 	}
214 214
 
215 215
 	/**
216
-	 * @return string|null
216
+	 * @return string
217 217
 	 */
218 218
 	public function getDavPermissions() {
219 219
 		$p = '';
Please login to merge, or discard this patch.
lib/private/connector/sabre/principal.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	 * The principals should be passed as a list of uri's.
169 169
 	 *
170 170
 	 * @param string $principal
171
-	 * @param array $members
171
+	 * @param string[] $members
172 172
 	 * @throws \Sabre\DAV\Exception
173 173
 	 */
174 174
 	public function setGroupMemberSet($principal, array $members) {
Please login to merge, or discard this patch.