@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | - * @param $action |
|
| 100 | + * @param string $action |
|
| 101 | 101 | * |
| 102 | 102 | * @throws InterruptException |
| 103 | 103 | * @throws TickDoesNotExistException |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | - * @param $line |
|
| 115 | + * @param string $line |
|
| 116 | 116 | */ |
| 117 | 117 | private function outputRunner($line) { |
| 118 | 118 | if ($this->runner === null) { |
@@ -104,12 +104,12 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | foreach ($hosts as $host) { |
| 106 | 106 | $parsedHost = parse_url($host); |
| 107 | - $safeHost = $parsedHost['scheme'] . '://'; |
|
| 107 | + $safeHost = $parsedHost['scheme'].'://'; |
|
| 108 | 108 | if (array_key_exists('user', $parsedHost)) { |
| 109 | - $safeHost .= $parsedHost['user'] . ':' . '********' . '@'; |
|
| 109 | + $safeHost .= $parsedHost['user'].':'.'********'.'@'; |
|
| 110 | 110 | } |
| 111 | 111 | $safeHost .= $parsedHost['host']; |
| 112 | - $safeHost .= ':' . $parsedHost['port']; |
|
| 112 | + $safeHost .= ':'.$parsedHost['port']; |
|
| 113 | 113 | |
| 114 | 114 | $result[] = $safeHost; |
| 115 | 115 | } |
@@ -264,13 +264,13 @@ discard block |
||
| 264 | 264 | public function indexDocument(IFullTextSearchProvider $provider, IndexDocument $document) { |
| 265 | 265 | |
| 266 | 266 | $this->updateRunner('indexDocument'); |
| 267 | - $this->outputRunner(' . Indexing: ' . $document->getTitle()); |
|
| 267 | + $this->outputRunner(' . Indexing: '.$document->getTitle()); |
|
| 268 | 268 | |
| 269 | 269 | $document->initHash(); |
| 270 | 270 | |
| 271 | 271 | try { |
| 272 | 272 | $result = $this->indexService->indexDocument($this->client, $provider, $document); |
| 273 | - $this->outputRunner(' result: ' . json_encode($result)); |
|
| 273 | + $this->outputRunner(' result: '.json_encode($result)); |
|
| 274 | 274 | |
| 275 | 275 | return $this->indexService->parseIndexResult($document->getIndex(), $result); |
| 276 | 276 | } catch (Exception $e) { |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | $index->setMessage(json_encode($message)); |
| 304 | 304 | |
| 305 | 305 | $result = $this->indexService->indexDocument($this->client, $provider, $document); |
| 306 | - $this->outputRunner(' result with no content: ' . json_encode($result)); |
|
| 306 | + $this->outputRunner(' result with no content: '.json_encode($result)); |
|
| 307 | 307 | |
| 308 | 308 | return $this->indexService->parseIndexResult($document->getIndex(), $result); |
| 309 | 309 | } |
@@ -26,9 +26,9 @@ |
||
| 26 | 26 | |
| 27 | 27 | namespace OCA\FullTextSearch_ElasticSearch\AppInfo; |
| 28 | 28 | |
| 29 | -$composerDir = __DIR__ . '/../vendor/'; |
|
| 29 | +$composerDir = __DIR__.'/../vendor/'; |
|
| 30 | 30 | |
| 31 | -if (is_dir($composerDir) && file_exists($composerDir . 'autoload.php')) { |
|
| 32 | - require_once $composerDir . 'autoload.php'; |
|
| 31 | +if (is_dir($composerDir) && file_exists($composerDir.'autoload.php')) { |
|
| 32 | + require_once $composerDir.'autoload.php'; |
|
| 33 | 33 | } |
| 34 | 34 | |
@@ -26,6 +26,6 @@ |
||
| 26 | 26 | |
| 27 | 27 | namespace OCA\FullTextSearch_ElasticSearch\AppInfo; |
| 28 | 28 | |
| 29 | -require_once __DIR__ . '/autoload.php'; |
|
| 29 | +require_once __DIR__.'/autoload.php'; |
|
| 30 | 30 | |
| 31 | 31 | new Application(); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | 'index' => |
| 76 | 76 | [ |
| 77 | 77 | 'index' => $this->configService->getElasticIndex(), |
| 78 | - 'id' => $document->getProviderId() . ':' . $document->getId(), |
|
| 78 | + 'id' => $document->getProviderId().':'.$document->getId(), |
|
| 79 | 79 | 'type' => 'standard', |
| 80 | 80 | 'body' => $this->generateIndexBody($document) |
| 81 | 81 | ] |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | 'index' => |
| 106 | 106 | [ |
| 107 | 107 | 'index' => $this->configService->getElasticIndex(), |
| 108 | - 'id' => $document->getProviderId() . ':' . $document->getId(), |
|
| 108 | + 'id' => $document->getProviderId().':'.$document->getId(), |
|
| 109 | 109 | 'type' => 'standard', |
| 110 | 110 | 'body' => ['doc' => $this->generateIndexBody($document)] |
| 111 | 111 | ] |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | 'index' => |
| 134 | 134 | [ |
| 135 | 135 | 'index' => $this->configService->getElasticIndex(), |
| 136 | - 'id' => $providerId . ':' . $documentId, |
|
| 136 | + 'id' => $providerId.':'.$documentId, |
|
| 137 | 137 | 'type' => 'standard' |
| 138 | 138 | ] |
| 139 | 139 | ]; |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | |
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | - * @param array $result |
|
| 90 | + * @param callable $result |
|
| 91 | 91 | * |
| 92 | 92 | * @return SearchResult |
| 93 | 93 | */ |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | $result = $client->search($query['params']); |
| 85 | 85 | } catch (Exception $e) { |
| 86 | 86 | $this->miscService->log( |
| 87 | - 'debug - request: ' . json_encode($request) . ' - query: ' . json_encode($query) |
|
| 87 | + 'debug - request: '.json_encode($request).' - query: '.json_encode($query) |
|
| 88 | 88 | ); |
| 89 | 89 | throw $e; |
| 90 | 90 | } |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | /** |
| 109 | 109 | * @param Client $client |
| 110 | - * @param $providerId |
|
| 110 | + * @param string $providerId |
|
| 111 | 111 | * |
| 112 | 112 | * @throws ConfigurationException |
| 113 | 113 | */ |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | 193 | * @param Index $index |
| 194 | - * @param array $result |
|
| 194 | + * @param callable $result |
|
| 195 | 195 | * |
| 196 | 196 | * @return Index |
| 197 | 197 | */ |
@@ -344,8 +344,8 @@ |
||
| 344 | 344 | |
| 345 | 345 | |
| 346 | 346 | /** |
| 347 | - * @param $providerId |
|
| 348 | - * @param $documentId |
|
| 347 | + * @param string $providerId |
|
| 348 | + * @param string $documentId |
|
| 349 | 349 | * |
| 350 | 350 | * @return array |
| 351 | 351 | * @throws ConfigurationException |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | private function generateQueryContentFields(SearchRequest $request, QueryContent $content) { |
| 254 | 254 | $parts = array_map( |
| 255 | 255 | function($value) { |
| 256 | - return 'parts.' . $value; |
|
| 256 | + return 'parts.'.$value; |
|
| 257 | 257 | }, $request->getParts() |
| 258 | 258 | ); |
| 259 | 259 | $fields = array_merge(['content', 'title'], $request->getFields(), $parts); |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | |
| 268 | 268 | foreach ($request->getWildcardFields() as $field) { |
| 269 | 269 | if (!$this->fieldIsOutLimit($request, $field)) { |
| 270 | - $queryFields[] = ['wildcard' => [$field => '*' . $content->getWord() . '*']]; |
|
| 270 | + $queryFields[] = ['wildcard' => [$field => '*'.$content->getWord().'*']]; |
|
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | 273 | |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | return [ |
| 355 | 355 | 'index' => $this->configService->getElasticIndex(), |
| 356 | 356 | 'type' => 'standard', |
| 357 | - 'id' => $providerId . ':' . $documentId |
|
| 357 | + 'id' => $providerId.':'.$documentId |
|
| 358 | 358 | ]; |
| 359 | 359 | } |
| 360 | 360 | |