Completed
Pull Request — master (#634)
by Maxence
02:35
created
lib/Migration/Migration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 	 * @return string
76 76
 	 */
77 77
 	public function getName(): string {
78
-		return '(' . Application::APP_NAME . ') Migrating data from older version of the Circles App';
78
+		return '('.Application::APP_NAME.') Migrating data from older version of the Circles App';
79 79
 	}
80 80
 
81 81
 
Please login to merge, or discard this patch.
lib/Migration/Sync.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	 * @return string
69 69
 	 */
70 70
 	public function getName(): string {
71
-		return '(' . Application::APP_NAME . ') Synchronizing local entities';
71
+		return '('.Application::APP_NAME.') Synchronizing local entities';
72 72
 	}
73 73
 
74 74
 
Please login to merge, or discard this patch.
lib/Service/SyncService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
 	 */
398 398
 	public function groupDeleted(string $groupId): void {
399 399
 		$circle = new Circle();
400
-		$circle->setName('group:' . $groupId)
400
+		$circle->setName('group:'.$groupId)
401 401
 			   ->setConfig(Circle::CFG_SYSTEM | Circle::CFG_NO_OWNER | Circle::CFG_HIDDEN)
402 402
 			   ->setSource(Member::TYPE_GROUP);
403 403
 
@@ -767,14 +767,14 @@  discard block
 block discarded – undo
767 767
 	 */
768 768
 	private function output(string $message, bool $advance = false): void {
769 769
 		if (!is_null($this->occOutput)) {
770
-			$this->occOutput->writeln((($advance) ? '+' : '-') . ' ' . $message);
770
+			$this->occOutput->writeln((($advance) ? '+' : '-').' '.$message);
771 771
 		}
772 772
 
773 773
 		if (!is_null($this->migrationOutput)) {
774 774
 			if ($advance) {
775
-				$this->migrationOutput->advance(1, '(Circles) ' . $message);
775
+				$this->migrationOutput->advance(1, '(Circles) '.$message);
776 776
 			} else {
777
-				$this->migrationOutput->info('(Circles) ' . $message);
777
+				$this->migrationOutput->info('(Circles) '.$message);
778 778
 			}
779 779
 		}
780 780
 	}
Please login to merge, or discard this patch.