Completed
Push — master ( fab951...c2b1bd )
by Joas
102:02 queued 82:49
created
lib/private/Files/ObjectStore/S3ObjectTrait.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -74,6 +74,10 @@  discard block
 block discarded – undo
74 74
 
75 75
 	}
76 76
 
77
+	/**
78
+	 * @param string $urn
79
+	 * @param resource $stream
80
+	 */
77 81
 	protected function singlePartUpload($urn, $stream) {
78 82
 		$this->getConnection()->putObject([
79 83
 			'Bucket' => $this->bucket,
@@ -82,6 +86,10 @@  discard block
 block discarded – undo
82 86
 		]);
83 87
 	}
84 88
 
89
+	/**
90
+	 * @param string $urn
91
+	 * @param resource $stream
92
+	 */
85 93
 	protected function multiPartUpload($urn, $stream) {
86 94
 		$uploader = new MultipartUploader($this->getConnection(), $stream, [
87 95
 			'bucket' => $this->bucket,
Please login to merge, or discard this patch.
lib/private/Files/Storage/DAV.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -598,6 +598,9 @@
 block discarded – undo
598 598
 		}
599 599
 	}
600 600
 
601
+	/**
602
+	 * @param string $path
603
+	 */
601 604
 	public function getMimeTypeFromRemote($path) {
602 605
 		try {
603 606
 			$response = $this->propfind($path);
Please login to merge, or discard this patch.
apps/files_sharing/composer/composer/ClassLoader.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * appending or prepending to the ones previously set for this namespace.
149 149
      *
150 150
      * @param string       $prefix  The prefix/namespace, with trailing '\\'
151
-     * @param array|string $paths   The PSR-4 base directories
151
+     * @param string $paths   The PSR-4 base directories
152 152
      * @param bool         $prepend Whether to prepend the directories
153 153
      *
154 154
      * @throws \InvalidArgumentException
@@ -367,6 +367,10 @@  discard block
 block discarded – undo
367 367
         return $file;
368 368
     }
369 369
 
370
+    /**
371
+     * @param string $class
372
+     * @param string $ext
373
+     */
370 374
     private function findFileWithExtension($class, $ext)
371 375
     {
372 376
         // PSR-4 lookup
Please login to merge, or discard this patch.
apps/admin_audit/composer/composer/ClassLoader.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * appending or prepending to the ones previously set for this namespace.
149 149
      *
150 150
      * @param string       $prefix  The prefix/namespace, with trailing '\\'
151
-     * @param array|string $paths   The PSR-4 base directories
151
+     * @param string $paths   The PSR-4 base directories
152 152
      * @param bool         $prepend Whether to prepend the directories
153 153
      *
154 154
      * @throws \InvalidArgumentException
@@ -367,6 +367,10 @@  discard block
 block discarded – undo
367 367
         return $file;
368 368
     }
369 369
 
370
+    /**
371
+     * @param string $class
372
+     * @param string $ext
373
+     */
370 374
     private function findFileWithExtension($class, $ext)
371 375
     {
372 376
         // PSR-4 lookup
Please login to merge, or discard this patch.
apps/comments/composer/composer/ClassLoader.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * appending or prepending to the ones previously set for this namespace.
149 149
      *
150 150
      * @param string       $prefix  The prefix/namespace, with trailing '\\'
151
-     * @param array|string $paths   The PSR-4 base directories
151
+     * @param string $paths   The PSR-4 base directories
152 152
      * @param bool         $prepend Whether to prepend the directories
153 153
      *
154 154
      * @throws \InvalidArgumentException
@@ -367,6 +367,10 @@  discard block
 block discarded – undo
367 367
         return $file;
368 368
     }
369 369
 
370
+    /**
371
+     * @param string $class
372
+     * @param string $ext
373
+     */
370 374
     private function findFileWithExtension($class, $ext)
371 375
     {
372 376
         // PSR-4 lookup
Please login to merge, or discard this patch.
apps/dav/composer/composer/ClassLoader.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * appending or prepending to the ones previously set for this namespace.
149 149
      *
150 150
      * @param string       $prefix  The prefix/namespace, with trailing '\\'
151
-     * @param array|string $paths   The PSR-4 base directories
151
+     * @param string $paths   The PSR-4 base directories
152 152
      * @param bool         $prepend Whether to prepend the directories
153 153
      *
154 154
      * @throws \InvalidArgumentException
@@ -367,6 +367,10 @@  discard block
 block discarded – undo
367 367
         return $file;
368 368
     }
369 369
 
370
+    /**
371
+     * @param string $class
372
+     * @param string $ext
373
+     */
370 374
     private function findFileWithExtension($class, $ext)
371 375
     {
372 376
         // PSR-4 lookup
Please login to merge, or discard this patch.
lib/private/Remote/Api/ApiBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 	 * @param array $body
57 57
 	 * @param array $query
58 58
 	 * @param array $headers
59
-	 * @return resource|string
59
+	 * @return string
60 60
 	 * @throws \InvalidArgumentException
61 61
 	 */
62 62
 	protected function request($method, $url, array $body = [], array $query = [], array $headers = []) {
Please login to merge, or discard this patch.
lib/private/Remote/Instance.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
 
135 135
 	/**
136 136
 	 * @param string $url
137
-	 * @return bool|string
137
+	 * @return string
138 138
 	 */
139 139
 	private function downloadStatus($url) {
140 140
 		try {
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	 * @param RequestInterface $request
105 105
 	 * @param ResponseInterface $response
106 106
 	 *
107
-	 * @return bool|void
107
+	 * @return null|false
108 108
 	 */
109 109
 	public function httpPost(RequestInterface $request, ResponseInterface $response) {
110 110
 		$node = $this->server->tree->getNodeForPath($this->server->getRequestUri());
Please login to merge, or discard this patch.