@@ -185,7 +185,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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); |