@@ -220,15 +220,15 @@ |
||
| 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 | |