Completed
Push — master ( 1dd8df...ebcb81 )
by René
05:19
created
lib/Controller/ShareController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -220,15 +220,15 @@
 block discarded – undo
220 220
 
221 221
 			try {
222 222
 				if ($token === $userShare->getToken()) {
223
-					$this->logger->debug('Update share: '. json_encode($userShare));
223
+					$this->logger->debug('Update share: ' . json_encode($userShare));
224 224
 					$userShare = $this->mapper->update($userShare);
225 225
 				} else {
226
-					$this->logger->debug('Create share: '. json_encode($userShare));
226
+					$this->logger->debug('Create share: ' . json_encode($userShare));
227 227
 					$userShare = $this->mapper->insert($userShare);
228 228
 				}
229 229
 
230 230
 			} catch (\Exception $e) {
231
-				$this->logger->debug('Exception: '. json_encode($e));
231
+				$this->logger->debug('Exception: ' . json_encode($e));
232 232
 				return new DataResponse($e, Http::STATUS_CONFLICT);
233 233
 			}
234 234
 
Please login to merge, or discard this patch.