Passed
Push — master ( 75e863...919a84 )
by Julius
15:48 queued 12s
created
lib/private/Files/ObjectStore/S3ObjectTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,11 +54,11 @@
 block discarded – undo
54 54
 	 * @since 7.0.0
55 55
 	 */
56 56
 	public function readObject($urn) {
57
-		return SeekableHttpStream::open(function ($range) use ($urn) {
57
+		return SeekableHttpStream::open(function($range) use ($urn) {
58 58
 			$command = $this->getConnection()->getCommand('GetObject', [
59 59
 				'Bucket' => $this->bucket,
60 60
 				'Key' => $urn,
61
-				'Range' => 'bytes=' . $range,
61
+				'Range' => 'bytes='.$range,
62 62
 			] + $this->getSSECParameters());
63 63
 			$request = \Aws\serialize($command);
64 64
 			$headers = [];
Please login to merge, or discard this patch.