Passed
Push — master ( e60ffe...a1b7f1 )
by Robin
16:13 queued 12s
created
apps/files_trashbin/lib/Command/CleanUp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,12 +122,12 @@
 block discarded – undo
122 122
 	protected function removeDeletedFiles(string $uid, OutputInterface $output, bool $verbose): void {
123 123
 		\OC_Util::tearDownFS();
124 124
 		\OC_Util::setupFS($uid);
125
-		$path = '/' . $uid . '/files_trashbin';
125
+		$path = '/'.$uid.'/files_trashbin';
126 126
 		if ($this->rootFolder->nodeExists($path)) {
127 127
 			$node = $this->rootFolder->get($path);
128 128
 
129 129
 			if ($verbose) {
130
-				$output->writeln("Deleting <info>" . \OC_Helper::humanFileSize($node->getSize()) . "</info> in trash for <info>$uid</info>.");
130
+				$output->writeln("Deleting <info>".\OC_Helper::humanFileSize($node->getSize())."</info> in trash for <info>$uid</info>.");
131 131
 			}
132 132
 			$node->delete();
133 133
 			if ($this->rootFolder->nodeExists($path)) {
Please login to merge, or discard this patch.