@@ -155,7 +155,7 @@ |
||
| 155 | 155 | IFullTextSearchPlatform $platform, IFullTextSearchProvider $provider, string $userId, |
| 156 | 156 | IndexOptions $options |
| 157 | 157 | ) { |
| 158 | - $this->updateRunnerAction('generateIndex' . $provider->getName()); |
|
| 158 | + $this->updateRunnerAction('generateIndex'.$provider->getName()); |
|
| 159 | 159 | $this->updateRunnerInfoArray( |
| 160 | 160 | [ |
| 161 | 161 | 'userId' => $userId, |
@@ -127,7 +127,7 @@ |
||
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | return array_map( |
| 130 | - function (Index $index): array { |
|
| 130 | + function(Index $index): array { |
|
| 131 | 131 | return $index->asSitemap($this->urlGenerator); |
| 132 | 132 | }, |
| 133 | 133 | $this->indexesRequest->getQueuedIndexes($collection, false, $length) |
@@ -118,7 +118,7 @@ |
||
| 118 | 118 | |
| 119 | 119 | $this->cliService->createPanel( |
| 120 | 120 | 'collection', [ |
| 121 | - '┌─ Collection ' . $collection . ' ────', |
|
| 121 | + '┌─ Collection '.$collection.' ────', |
|
| 122 | 122 | '│ ProviderId, UserId: <info>%providerId%</info> / <info>%userId%</info>', |
| 123 | 123 | '│ Chunk: <info>%chunkCurr:3s%</info>/<info>%chunkTotal%</info>', |
| 124 | 124 | '│ Document: <info>%documentCurr:6s%</info>/<info>%documentChunk%</info>', |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | * @return bool |
| 182 | 182 | */ |
| 183 | 183 | public function isAlreadyRunning(): bool { |
| 184 | - $ttl = (int) $this->configService->getAppValue(ConfigService::TICK_TTL); |
|
| 184 | + $ttl = (int)$this->configService->getAppValue(ConfigService::TICK_TTL); |
|
| 185 | 185 | $ticks = $this->tickRequest->getTicksByStatus('run'); |
| 186 | 186 | |
| 187 | 187 | $isAlreadyRunning = false; |
@@ -215,23 +215,23 @@ discard block |
||
| 215 | 215 | * @param Tick $tick |
| 216 | 216 | * @param string $action |
| 217 | 217 | */ |
| 218 | - private function assignActionToTick(Tick &$tick, string $action) { |
|
| 218 | + private function assignActionToTick(Tick & $tick, string $action) { |
|
| 219 | 219 | $now = microtime(true); |
| 220 | 220 | $preAction = $tick->getAction(); |
| 221 | 221 | |
| 222 | 222 | if ($preAction !== '') { |
| 223 | - $preActionTotal = $tick->getInfoFloat($preAction . 'Total', 0); |
|
| 224 | - $preActionStart = $tick->getInfoFloat($preAction . 'Init', 0); |
|
| 223 | + $preActionTotal = $tick->getInfoFloat($preAction.'Total', 0); |
|
| 224 | + $preActionStart = $tick->getInfoFloat($preAction.'Init', 0); |
|
| 225 | 225 | |
| 226 | 226 | if ($preActionStart > 0) { |
| 227 | 227 | |
| 228 | 228 | $preActionTotal += ($now - $preActionStart); |
| 229 | - $tick->setInfoFloat($preAction . 'Total', $preActionTotal); |
|
| 230 | - $tick->unsetInfo($preAction . 'Init'); |
|
| 229 | + $tick->setInfoFloat($preAction.'Total', $preActionTotal); |
|
| 230 | + $tick->unsetInfo($preAction.'Init'); |
|
| 231 | 231 | } |
| 232 | 232 | } |
| 233 | 233 | $tick->setAction($action) |
| 234 | - ->setInfoFloat($action . 'Init', $now); |
|
| 234 | + ->setInfoFloat($action.'Init', $now); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | try { |
| 118 | 118 | $platform = \OCP\Server::get((string)$class); |
| 119 | 119 | if (!($platform instanceof IFullTextSearchPlatform)) { |
| 120 | - $this->logger->warning($class . ' does not implement ' . IFullTextSearchPlatform::class); |
|
| 120 | + $this->logger->warning($class.' does not implement '.IFullTextSearchPlatform::class); |
|
| 121 | 121 | continue; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | $platform = OC::$server->query((string)$selected->getClass()); |
| 176 | 176 | if (!($platform instanceof IFullTextSearchPlatform)) { |
| 177 | 177 | throw new PlatformIsNotCompatibleException( |
| 178 | - $selected->getClass() . ' is not a compatible FullTextSearchPlatform' |
|
| 178 | + $selected->getClass().' is not a compatible FullTextSearchPlatform' |
|
| 179 | 179 | ); |
| 180 | 180 | } |
| 181 | 181 | |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | throw new PlatformDoesNotExistException( |
| 210 | - 'FullTextSearchPlatform ' . $selected . ' is not available' |
|
| 210 | + 'FullTextSearchPlatform '.$selected.' is not available' |
|
| 211 | 211 | ); |
| 212 | 212 | } |
| 213 | 213 | |
@@ -400,7 +400,7 @@ |
||
| 400 | 400 | foreach ($keys as $key) { |
| 401 | 401 | if (!array_key_exists($key, $arr)) { |
| 402 | 402 | throw new MalformedArrayException( |
| 403 | - 'source: ' . json_encode($arr) . ' - missing key: ' . $key |
|
| 403 | + 'source: '.json_encode($arr).' - missing key: '.$key |
|
| 404 | 404 | ); |
| 405 | 405 | } |
| 406 | 406 | } |
@@ -146,7 +146,7 @@ |
||
| 146 | 146 | */ |
| 147 | 147 | public function getAppValue(string $key): string { |
| 148 | 148 | return $this->config->getSystemValueString( |
| 149 | - Application::APP_ID . '.' . $key, |
|
| 149 | + Application::APP_ID.'.'.$key, |
|
| 150 | 150 | (string)$this->config->getAppValue(Application::APP_ID, |
| 151 | 151 | $key, |
| 152 | 152 | $this->defaults[$key] ?? '') |
@@ -124,8 +124,8 @@ |
||
| 124 | 124 | } catch (PlatformTemporaryException $e) { |
| 125 | 125 | $this->logger->warning('platform seems down. we will update index next cron tick'); |
| 126 | 126 | return; |
| 127 | - } catch (Throwable|Exception $e) { |
|
| 128 | - $this->runner->exception(get_class($e) . ' - ' . $e->getMessage(), false); |
|
| 127 | + } catch (Throwable | Exception $e) { |
|
| 128 | + $this->runner->exception(get_class($e).' - '.$e->getMessage(), false); |
|
| 129 | 129 | $this->logger->notice( |
| 130 | 130 | 'exception encountered while running fulltextsearch/lib/Cron/Index.php', |
| 131 | 131 | ['exception' => $e] |
@@ -62,10 +62,10 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | protected function execute(InputInterface $input, OutputInterface $output) { |
| 64 | 64 | $collections = $this->collectionService->getCollections(); |
| 65 | - $output->writeln('found ' . sizeof($collections) . ' collection(s)'); |
|
| 65 | + $output->writeln('found '.sizeof($collections).' collection(s)'); |
|
| 66 | 66 | |
| 67 | 67 | foreach ($this->collectionService->getCollections() as $collection) { |
| 68 | - $output->writeln('- ' . (($collection === $this->configService->getInternalCollection()) ? '*' : '') . $collection); |
|
| 68 | + $output->writeln('- '.(($collection === $this->configService->getInternalCollection()) ? '*' : '').$collection); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return 0; |