Completed
Pull Request — master (#28250)
by Thomas
41:49 queued 31:04
created
lib/private/Files/ObjectStore/Swift.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 namespace OC\Files\ObjectStore;
25 25
 
26 26
 use Guzzle\Http\Exception\ClientErrorResponseException;
27
-use OCP\Files\Cache\ICacheEntry;
28 27
 use OCP\Files\ObjectStore\IObjectStore;
29 28
 use OpenCloud\OpenStack;
30 29
 use OpenCloud\Rackspace;
Please login to merge, or discard this patch.
lib/public/Files/ObjectStore/IObjectStore.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
  *
21 21
  */
22 22
 namespace OCP\Files\ObjectStore;
23
-use OCP\Files\Cache\ICacheEntry;
24 23
 
25 24
 /**
26 25
  * Interface IObjectStore
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,6 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * @param resource $stream stream with the data to write
50 50
 	 * @throws \Exception when something goes wrong, message will be logged
51 51
 	 * @since 7.0.0
52
+	 * @return void
52 53
 	 */
53 54
 	function writeObject($urn, $stream);
54 55
 
@@ -61,7 +62,8 @@  discard block
 block discarded – undo
61 62
 	function deleteObject($urn);
62 63
 
63 64
 	/**
64
-	 * @param string $path
65
+	 * @param string|null $urn
66
+	 * @param string|null $versionId
65 67
 	 * @return string mixed
66 68
 	 * @since 10.1.0
67 69
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/FilesPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
 	/**
224 224
 	 * @param RequestInterface $request
225 225
 	 * @param ResponseInterface $response
226
-	 * @return bool|void
226
+	 * @return false|null
227 227
 	 * @throws NotFound
228 228
 	 */
229 229
 	public function redirect(RequestInterface $request, ResponseInterface $response) {
Please login to merge, or discard this patch.