Completed
Pull Request — master (#1394)
by Maxence
57s
created
lib/Command/CirclesMaintenance.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 				'<error>WARNING! You are about to delete all data related to the Circles App!</error>'
103 103
 			);
104 104
 			$question = new ConfirmationQuestion(
105
-				'<comment>Do you really want to ' . $action . ' Circles ?</comment> (y/N) ', false,
105
+				'<comment>Do you really want to '.$action.' Circles ?</comment> (y/N) ', false,
106 106
 				'/^(y|Y)/i'
107 107
 			);
108 108
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 			$output->writeln('<error>WARNING! This operation is not reversible.</error>');
118 118
 
119 119
 			$question = new Question(
120
-				'<comment>Please confirm this destructive operation by typing \'' . $action
120
+				'<comment>Please confirm this destructive operation by typing \''.$action
121 121
 				. '\'</comment>: ', ''
122 122
 			);
123 123
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 				$this->coreRequestBuilder->uninstall();
135 135
 			}
136 136
 
137
-			$output->writeln('<info>' . $action . ' done</info>');
137
+			$output->writeln('<info>'.$action.' done</info>');
138 138
 
139 139
 			return 0;
140 140
 		}
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 		$federatedUser = $this->federatedUserService->getLocalFederatedUser($userId);
166 166
 		$displayName = $this->maintenanceService->updateDisplayName($federatedUser);
167 167
 		if ($displayName !== '') {
168
-			$output->writeln('Display name of ' . $federatedUser->getSingleId() . ' updated to ' . $displayName);
168
+			$output->writeln('Display name of '.$federatedUser->getSingleId().' updated to '.$displayName);
169 169
 		}
170 170
 
171 171
 		return 0;
Please login to merge, or discard this patch.