Completed
Pull Request — master (#7172)
by Björn
12:49
created
lib/private/Repair/NC11/CleanPreviewsBackgroundJob.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,17 +72,17 @@
 block discarded – undo
72 72
 	public function run($arguments) {
73 73
 		$uid = $arguments['uid'];
74 74
 		if (!$this->userManager->userExists($uid)) {
75
-			$this->logger->info('User no longer exists, skip user ' . $uid);
75
+			$this->logger->info('User no longer exists, skip user '.$uid);
76 76
 			return;
77 77
 		}
78
-		$this->logger->info('Started preview cleanup for ' . $uid);
78
+		$this->logger->info('Started preview cleanup for '.$uid);
79 79
 		$empty = $this->cleanupPreviews($uid);
80 80
 
81 81
 		if (!$empty) {
82 82
 			$this->jobList->add(self::class, ['uid' => $uid]);
83
-			$this->logger->info('New preview cleanup scheduled for ' . $uid);
83
+			$this->logger->info('New preview cleanup scheduled for '.$uid);
84 84
 		} else {
85
-			$this->logger->info('Preview cleanup done for ' . $uid);
85
+			$this->logger->info('Preview cleanup done for '.$uid);
86 86
 		}
87 87
 	}
88 88
 
Please login to merge, or discard this patch.