Completed
Push — master ( af172b...c8eead )
by
unknown
38:23 queued 03:26
created
apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 						Trashbin::deleteExpiredFiles($dirContent, $uid);
70 70
 					}
71 71
 				} catch (\Throwable $e) {
72
-					$this->logger->error('Error while expiring trashbin for user ' . $uid, ['exception' => $e]);
72
+					$this->logger->error('Error while expiring trashbin for user '.$uid, ['exception' => $e]);
73 73
 				} finally {
74 74
 					$this->setupManager->tearDown();
75 75
 				}
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 		$this->setupManager->setupForUser($user);
90 90
 
91 91
 		// Check if this user has a trashbin directory
92
-		$view = new View('/' . $user->getUID());
92
+		$view = new View('/'.$user->getUID());
93 93
 		if (!$view->is_dir('/files_trashbin/files')) {
94 94
 			return false;
95 95
 		}
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	}
99 99
 
100 100
 	private function getNextOffset(): int {
101
-		return $this->runMutexOperation(function () {
101
+		return $this->runMutexOperation(function() {
102 102
 			$this->appConfig->clearCache();
103 103
 
104 104
 			$offset = $this->appConfig->getValueInt(Application::APP_ID, self::OFFSET_CONFIG_KEY_NAME, 0);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	}
111 111
 
112 112
 	private function resetOffset() {
113
-		$this->runMutexOperation(function () {
113
+		$this->runMutexOperation(function() {
114 114
 			$this->appConfig->setValueInt(Application::APP_ID, self::OFFSET_CONFIG_KEY_NAME, 0);
115 115
 		});
116 116
 	}
Please login to merge, or discard this patch.