Completed
Push — stable12 ( fbf8b3...04bfb6 )
by Morris
58:30 queued 23:46
created
apps/files_sharing/lib/SharedStorage.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 	 * @return string
183 183
 	 */
184 184
 	public function getId() {
185
-		return 'shared::' . $this->getMountPoint();
185
+		return 'shared::'.$this->getMountPoint();
186 186
 	}
187 187
 
188 188
 	/**
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 					}
286 286
 			}
287 287
 			$info = array(
288
-				'target' => $this->getMountPoint() . $path,
288
+				'target' => $this->getMountPoint().$path,
289 289
 				'source' => $source,
290 290
 				'mode' => $mode,
291 291
 			);
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
 		if (!$storage) {
379 379
 			$storage = $this;
380 380
 		}
381
-		$sourceRoot  = $this->getSourceRootInfo();
381
+		$sourceRoot = $this->getSourceRootInfo();
382 382
 		if ($this->storage instanceof FailedStorage) {
383 383
 			return new FailedCache();
384 384
 		}
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
 
485 485
 	public function file_get_contents($path) {
486 486
 		$info = [
487
-			'target' => $this->getMountPoint() . '/' . $path,
487
+			'target' => $this->getMountPoint().'/'.$path,
488 488
 			'source' => $this->getUnjailedPath($path),
489 489
 		];
490 490
 		\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info);
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
 
494 494
 	public function file_put_contents($path, $data) {
495 495
 		$info = [
496
-			'target' => $this->getMountPoint() . '/' . $path,
496
+			'target' => $this->getMountPoint().'/'.$path,
497 497
 			'source' => $this->getUnjailedPath($path),
498 498
 		];
499 499
 		\OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info);
Please login to merge, or discard this patch.