Completed
Push — master ( 647b18...1a99e0 )
by Robin
22:10 queued 05:29
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.