Completed
Push — master ( 492a8c...2369ad )
by
unknown
21:34
created
lib/private/Files/Cache/Propagator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 		$etag = uniqid(); // since we give all folders the same etag we don't ask the storage for the etag
63 63
 
64 64
 		$builder = $this->connection->getQueryBuilder();
65
-		$hashParams = array_map(function ($hash) use ($builder) {
65
+		$hashParams = array_map(function($hash) use ($builder) {
66 66
 			return $builder->expr()->literal($hash);
67 67
 		}, $parentHashes);
68 68
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
 				/** @var LoggerInterface $loggerInterface */
116 116
 				$loggerInterface = \OCP\Server::get(LoggerInterface::class);
117
-				$loggerInterface->warning('Retrying propagation query after retryable exception.', [ 'exception' => $e ]);
117
+				$loggerInterface->warning('Retrying propagation query after retryable exception.', ['exception' => $e]);
118 118
 			}
119 119
 		}
120 120
 	}
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 		$parents = [];
129 129
 		foreach ($parts as $part) {
130 130
 			$parents[] = $parent;
131
-			$parent = trim($parent . '/' . $part, '/');
131
+			$parent = trim($parent.'/'.$part, '/');
132 132
 		}
133 133
 		return $parents;
134 134
 	}
Please login to merge, or discard this patch.