Completed
Push — master ( 3aeedd...be0cda )
by Maxence
03:35 queued 11s
created
lib/Command/CirclesMaintenance.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 			$keyword = ($uninstall) ? 'uninstall' : 'reset';
121 121
 
122 122
 			$question = new Question(
123
-				'<comment>Please confirm this destructive operation by typing \'' . $keyword
123
+				'<comment>Please confirm this destructive operation by typing \''.$keyword
124 124
 				. '\'</comment>: ', ''
125 125
 			);
126 126
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 				$this->coreQueryBuilder->uninstall();
138 138
 			}
139 139
 
140
-			$output->writeln('<info>' . $keyword . ' done</info>');
140
+			$output->writeln('<info>'.$keyword.' done</info>');
141 141
 
142 142
 			return 0;
143 143
 		}
Please login to merge, or discard this patch.
lib/Service/MaintenanceService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 	 */
170 170
 	private function output(string $message): void {
171 171
 		if (!is_null($this->output)) {
172
-			$this->output->writeln('- ' . $message);
172
+			$this->output->writeln('- '.$message);
173 173
 		}
174 174
 	}
175 175
 
Please login to merge, or discard this patch.