Passed
Push — master ( b0c04a...681e51 )
by Morris
15:22 queued 10s
created
apps/files_sharing/lib/SharedStorage.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 	 * @return string
186 186
 	 */
187 187
 	public function getId() {
188
-		return 'shared::' . $this->getMountPoint();
188
+		return 'shared::'.$this->getMountPoint();
189 189
 	}
190 190
 
191 191
 	/**
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
 				}
289 289
 		}
290 290
 		$info = [
291
-			'target' => $this->getMountPoint() . '/' . $path,
291
+			'target' => $this->getMountPoint().'/'.$path,
292 292
 			'source' => $source,
293 293
 			'mode' => $mode,
294 294
 		];
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 
491 491
 	public function file_get_contents($path) {
492 492
 		$info = [
493
-			'target' => $this->getMountPoint() . '/' . $path,
493
+			'target' => $this->getMountPoint().'/'.$path,
494 494
 			'source' => $this->getUnjailedPath($path),
495 495
 		];
496 496
 		\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info);
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 
500 500
 	public function file_put_contents($path, $data) {
501 501
 		$info = [
502
-			'target' => $this->getMountPoint() . '/' . $path,
502
+			'target' => $this->getMountPoint().'/'.$path,
503 503
 			'source' => $this->getUnjailedPath($path),
504 504
 		];
505 505
 		\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info);
Please login to merge, or discard this patch.