Completed
Pull Request — stable8.2 (#22705)
by Joas
11:49
created
lib/private/app/codechecker/nodevisitor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
 	protected $testId;
43 43
 	protected $preName;
44 44
 
45
+	/**
46
+	 * @param string $name
47
+	 */
45 48
 	public function __construct($name=null){
46 49
 		$this->addType('testId', 'integer');		
47 50
 		$this->name = $name;
Please login to merge, or discard this patch.
lib/private/files/objectstore/objectstorestorage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -144,6 +144,9 @@
 block discarded – undo
144 144
 		return true;
145 145
 	}
146 146
 
147
+	/**
148
+	 * @param string $path
149
+	 */
147 150
 	public function url_stat($path) {
148 151
 		if (isset(self::$data[$path])) {
149 152
 			$size = strlen(self::$data[$path]);
Please login to merge, or discard this patch.
lib/private/files/storage/flysystem.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -144,6 +144,9 @@
 block discarded – undo
144 144
 		return true;
145 145
 	}
146 146
 
147
+	/**
148
+	 * @param string $path
149
+	 */
147 150
 	public function url_stat($path) {
148 151
 		if (isset(self::$data[$path])) {
149 152
 			$size = strlen(self::$data[$path]);
Please login to merge, or discard this patch.
lib/private/files/type/loader.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use OCP\IUser;
28 28
 use OCP\ILogger;
29 29
 use OCP\Files\Folder;
30
-
31 30
 use OC\Share20\Exception\ShareNotFound;
32 31
 
33 32
 /**
Please login to merge, or discard this patch.
lib/private/memcache/apc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 	 * Set a value in the cache if it's not already stored
121 121
 	 *
122 122
 	 * @param string $key
123
-	 * @param mixed $value
123
+	 * @param integer $value
124 124
 	 * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
125 125
 	 * @return bool
126 126
 	 */
Please login to merge, or discard this patch.
apps/files/tests/activitytest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -357,6 +357,9 @@
 block discarded – undo
357 357
 		$result->closeCursor();
358 358
 	}
359 359
 
360
+	/**
361
+	 * @param string $user
362
+	 */
360 363
 	protected function mockUserSession($user) {
361 364
 		$mockUser = $this->getMockBuilder('\OCP\IUser')
362 365
 			->disableOriginalConstructor()
Please login to merge, or discard this patch.
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.