Completed
Push — master ( d0ff46...fed349 )
by Maxence
02:18 queued 57s
created
lib/Command/Live.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 
269 269
 			} catch (Exception $e) {
270 270
 				$this->miscService->log(
271
-					'Exception while live index: ' . get_class($e) . ' - ' . $e->getMessage()
271
+					'Exception while live index: '.get_class($e).' - '.$e->getMessage()
272 272
 				);
273 273
 
274 274
 				if (!$input->getOption('service')) {
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
 		$index = $result['index'];
568 568
 		$resultIndex = '';
569 569
 		if ($index !== null) {
570
-			$resultIndex = $index->getProviderId() . ':' . $index->getDocumentId();
570
+			$resultIndex = $index->getProviderId().':'.$index->getDocumentId();
571 571
 		}
572 572
 
573 573
 
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 		$index = $error['index'];
626 626
 		$errorIndex = '';
627 627
 		if ($index !== null) {
628
-			$errorIndex = $index->getProviderId() . ':' . $index->getDocumentId();
628
+			$errorIndex = $index->getProviderId().':'.$index->getDocumentId();
629 629
 		}
630 630
 
631 631
 		$width = $this->terminal->getWidth() - 13;
Please login to merge, or discard this patch.