@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | ->get($indexOptions->getOption('path', '/')); |
| 222 | 222 | } catch (Throwable $e) { |
| 223 | 223 | $this->e($e, ['userId' => $userId, 'options' => $indexOptions]); |
| 224 | - \OC::$server->getLogger()->log(2, 'Issue while retrieving rootFolder for ' . $userId); |
|
| 224 | + \OC::$server->getLogger()->log(2, 'Issue while retrieving rootFolder for '.$userId); |
|
| 225 | 225 | |
| 226 | 226 | return []; |
| 227 | 227 | } |
@@ -588,8 +588,8 @@ discard block |
||
| 588 | 588 | $document->getIndex() |
| 589 | 589 | ->setStatus(IIndex::INDEX_IGNORE); |
| 590 | 590 | $this->miscService->log( |
| 591 | - 'Exception while generateDocument: ' . $e->getMessage() . ' ('. get_class($e) .') at ' |
|
| 592 | - . $e->getFile() . ' line ' . $e->getLine() |
|
| 591 | + 'Exception while generateDocument: '.$e->getMessage().' ('.get_class($e).') at ' |
|
| 592 | + . $e->getFile().' line '.$e->getLine() |
|
| 593 | 593 | ); |
| 594 | 594 | } |
| 595 | 595 | } |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | |
| 796 | 796 | $part = []; |
| 797 | 797 | foreach ($comments as $comment) { |
| 798 | - $part[] = '<' . $comment->getActorId() . '> ' . $comment->getMessage(); |
|
| 798 | + $part[] = '<'.$comment->getActorId().'> '.$comment->getMessage(); |
|
| 799 | 799 | } |
| 800 | 800 | |
| 801 | 801 | $document->addPart('comments', implode(" \n ", $part)); |
@@ -832,7 +832,7 @@ discard block |
||
| 832 | 832 | |
| 833 | 833 | } catch (Throwable $e) { |
| 834 | 834 | $this->miscService->log( |
| 835 | - 'Issue while getting information on documentId:' . $document->getId(), 0 |
|
| 835 | + 'Issue while getting information on documentId:'.$document->getId(), 0 |
|
| 836 | 836 | ); |
| 837 | 837 | } |
| 838 | 838 | } |
@@ -1275,7 +1275,7 @@ discard block |
||
| 1275 | 1275 | $path = ''; |
| 1276 | 1276 | } |
| 1277 | 1277 | |
| 1278 | - $result = (($entrySlash) ? '/' : '') . $path; |
|
| 1278 | + $result = (($entrySlash) ? '/' : '').$path; |
|
| 1279 | 1279 | $this->debug( |
| 1280 | 1280 | 'getPathFromRoot', [ |
| 1281 | 1281 | 'path' => $path, |