Completed
Push — master ( ec2cb6...3686c1 )
by Maxence
12s
created
lib/Service/FilesService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -498,7 +498,7 @@  discard block
 block discarded – undo
498 498
 			$document->getIndex()
499 499
 					 ->setStatus(IIndex::INDEX_IGNORE);
500 500
 			$this->miscService->log(
501
-				'Exception while generateDocument: ' . $e->getMessage() . ' - trace: '
501
+				'Exception while generateDocument: '.$e->getMessage().' - trace: '
502 502
 				. json_encode($e->getTrace())
503 503
 			);
504 504
 		}
@@ -687,7 +687,7 @@  discard block
 block discarded – undo
687 687
 
688 688
 		$part = [];
689 689
 		foreach ($comments as $comment) {
690
-			$part[] = '<' . $comment->getActorId() . '> ' . $comment->getMessage();
690
+			$part[] = '<'.$comment->getActorId().'> '.$comment->getMessage();
691 691
 		}
692 692
 
693 693
 		$document->addPart('comments', implode(" \n ", $part));
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
 
723 723
 			} catch (Exception $e) {
724 724
 				$this->miscService->log(
725
-					'Issue while getting information on documentId:' . $document->getId(), 0
725
+					'Issue while getting information on documentId:'.$document->getId(), 0
726 726
 				);
727 727
 			}
728 728
 		}
@@ -1152,7 +1152,7 @@  discard block
 block discarded – undo
1152 1152
 			$path = '';
1153 1153
 		}
1154 1154
 
1155
-		return (($entrySlash) ? '/' : '') . $path;
1155
+		return (($entrySlash) ? '/' : '').$path;
1156 1156
 	}
1157 1157
 
1158 1158
 }
Please login to merge, or discard this patch.