Completed
Push — master ( afcdeb...3e8848 )
by Maxence
16s queued 11s
created
lib/Service/SharingFrameService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	public function createFrame($circleUniqueId, SharingFrame $frame, $broadcast = null) {
154 154
 
155 155
 		$this->miscService->log(
156
-			'Create frame with payload ' . json_encode($frame->getPayload()) . ' as ' . $this->userId, 0
156
+			'Create frame with payload '.json_encode($frame->getPayload()).' as '.$this->userId, 0
157 157
 		);
158 158
 		try {
159 159
 			$circle = $this->circlesRequest->getCircle($circleUniqueId, $this->userId);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 			$this->initiateShare($circle->getUniqueId(), $frame->getUniqueId());
169 169
 		} catch (Exception $e) {
170 170
 			$this->miscService->log(
171
-				'fail to create frame for circle ' . $circleUniqueId . ' - ' . $e->getMessage()
171
+				'fail to create frame for circle '.$circleUniqueId.' - '.$e->getMessage()
172 172
 			);
173 173
 			throw $e;
174 174
 		}
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 			return true;
319 319
 		} catch (Exception $e) {
320 320
 			$this->miscService->log(
321
-				'fail to initialise circle share with request ' . json_encode($request) . ' - '
321
+				'fail to initialise circle share with request '.json_encode($request).' - '
322 322
 				. $e->getMessage(), 3
323 323
 			);
324 324
 			throw $e;
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
 	 * @return string
333 333
 	 */
334 334
 	private function generatePayloadDeliveryURL($remote) {
335
-		return $this->configService->generateRemoteHost($remote) .
335
+		return $this->configService->generateRemoteHost($remote).
336 336
 			   $this->urlGenerator->linkToRoute('circles.Shares.initShareDelivery');
337 337
 	}
338 338
 
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
 
408 408
 		} catch (Exception $e) {
409 409
 			$this->miscService->log(
410
-				'fail to send frame to ' . $link->getAddress() . ' - ' . $e->getMessage()
410
+				'fail to send frame to '.$link->getAddress().' - '.$e->getMessage()
411 411
 			);
412 412
 		}
413 413
 	}
Please login to merge, or discard this patch.