Completed
Push — master ( ac736b...d32b03 )
by Maxence
16s queued 11s
created
lib/Service/MaintenanceService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 		$this->federatedUserService->bypassCurrentUserCondition(true);
141 141
 
142 142
 		$this->lockMaintenanceRun();
143
-		echo 'running maintenance(' . $level . ')' . "\n";
143
+		echo 'running maintenance('.$level.')'."\n";
144 144
 
145 145
 		switch ($level) {
146 146
 			case 1:
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 	 */
336 336
 	private function output(string $message): void {
337 337
 		if (!is_null($this->output)) {
338
-			$this->output->writeln('- ' . $message);
338
+			$this->output->writeln('- '.$message);
339 339
 		}
340 340
 	}
341 341
 
Please login to merge, or discard this patch.
lib/Cron/Maintenance.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,9 +54,9 @@
 block discarded – undo
54 54
 
55 55
 	static $DELAY =
56 56
 		[
57
-			1 => 60,    // every minute
58
-			2 => 300,   // every 5 minutes
59
-			3 => 3600,  // every hour
57
+			1 => 60, // every minute
58
+			2 => 300, // every 5 minutes
59
+			3 => 3600, // every hour
60 60
 			4 => 75400, // every day
61 61
 			5 => 432000 // evey week
62 62
 		];
Please login to merge, or discard this patch.