Passed
Push — master ( 1f7cb0...b6245b )
by Roeland
12:40 queued 11s
created
lib/public/Lock/LockedException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,10 +56,10 @@
 block discarded – undo
56 56
 	 * @since 8.1.0
57 57
 	 */
58 58
 	public function __construct(string $path, \Exception $previous = null, string $existingLock = null) {
59
-		$message = '"' . $path . '" is locked';
59
+		$message = '"'.$path.'" is locked';
60 60
 		$this->existingLock = $existingLock;
61 61
 		if ($existingLock) {
62
-			$message .= ', existing lock on file: ' . $existingLock;
62
+			$message .= ', existing lock on file: '.$existingLock;
63 63
 		}
64 64
 		parent::__construct($message, 0, $previous);
65 65
 		$this->path = $path;
Please login to merge, or discard this patch.