@@ -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; |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | $helper = $this->getHelper('question'); |
85 | 85 | |
86 | 86 | $output->writeln('<error>WARNING! You are about to reset your indexed documents:</error>'); |
87 | - $output->writeln('- provider: <info>' . (($provider === '') ? 'ALL' : $provider) . '</info>'); |
|
88 | - $output->writeln('- collection: <info>' . (($collection === '') ? 'ALL' : $collection) . '</info>'); |
|
87 | + $output->writeln('- provider: <info>'.(($provider === '') ? 'ALL' : $provider).'</info>'); |
|
88 | + $output->writeln('- collection: <info>'.(($collection === '') ? 'ALL' : $collection).'</info>'); |
|
89 | 89 | $output->writeln(''); |
90 | 90 | |
91 | 91 | $question = new ConfirmationQuestion( |
@@ -102,10 +102,10 @@ discard block |
||
102 | 102 | |
103 | 103 | $output->writeln(''); |
104 | 104 | $output->writeln('<error>WARNING! This operation is not reversible.</error>'); |
105 | - $action = 'reset ' . (($provider === '') ? 'ALL' : $provider) |
|
106 | - . ' ' . (($collection === '') ? 'ALL' : $collection); |
|
105 | + $action = 'reset '.(($provider === '') ? 'ALL' : $provider) |
|
106 | + . ' '.(($collection === '') ? 'ALL' : $collection); |
|
107 | 107 | |
108 | - $question = new Question('<comment>Please confirm this destructive operation by typing \'' . $action . '\'</comment>: ', ''); |
|
108 | + $question = new Question('<comment>Please confirm this destructive operation by typing \''.$action.'\'</comment>: ', ''); |
|
109 | 109 | |
110 | 110 | $helper = $this->getHelper('question'); |
111 | 111 | $confirmation = $helper->ask($input, $output, $question); |
@@ -202,8 +202,8 @@ discard block |
||
202 | 202 | */ |
203 | 203 | private function limitToDBField(IQueryBuilder $qb, string $field, string $value) { |
204 | 204 | $expr = $qb->expr(); |
205 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : ''; |
|
206 | - $field = $pf . $field; |
|
205 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : ''; |
|
206 | + $field = $pf.$field; |
|
207 | 207 | |
208 | 208 | $qb->andWhere($expr->eq($field, $qb->createNamedParameter($value))); |
209 | 209 | } |
@@ -215,8 +215,8 @@ discard block |
||
215 | 215 | */ |
216 | 216 | private function limitToDBFieldInt(IQueryBuilder $qb, string $field, int $value) { |
217 | 217 | $expr = $qb->expr(); |
218 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : ''; |
|
219 | - $field = $pf . $field; |
|
218 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : ''; |
|
219 | + $field = $pf.$field; |
|
220 | 220 | |
221 | 221 | $qb->andWhere($expr->eq($field, $qb->createNamedParameter($value))); |
222 | 222 | } |
@@ -229,8 +229,8 @@ discard block |
||
229 | 229 | */ |
230 | 230 | private function limitToDBFieldArray(IQueryBuilder $qb, string $field, array $values) { |
231 | 231 | $expr = $qb->expr(); |
232 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : ''; |
|
233 | - $field = $pf . $field; |
|
232 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : ''; |
|
233 | + $field = $pf.$field; |
|
234 | 234 | |
235 | 235 | if (!is_array($values)) { |
236 | 236 | $values = [$values]; |
@@ -250,8 +250,8 @@ discard block |
||
250 | 250 | */ |
251 | 251 | protected function limitToQueuedIndexes(IQueryBuilder $qb) { |
252 | 252 | $expr = $qb->expr(); |
253 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : ''; |
|
254 | - $qb->andWhere($expr->neq($pf . 'status', $qb->createNamedParameter(Index::INDEX_OK))); |
|
253 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : ''; |
|
254 | + $qb->andWhere($expr->neq($pf.'status', $qb->createNamedParameter(Index::INDEX_OK))); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | } |
106 | 106 | |
107 | 107 | $output->writeln( |
108 | - 'Full text search ' . $this->configService->getAppValue('installed_version') |
|
108 | + 'Full text search '.$this->configService->getAppValue('installed_version') |
|
109 | 109 | ); |
110 | 110 | $output->writeln(json_encode($this->configService->getConfig(), JSON_PRETTY_PRINT)); |
111 | 111 | $output->writeln(''); |
@@ -182,12 +182,12 @@ discard block |
||
182 | 182 | } |
183 | 183 | |
184 | 184 | $select = $this->configService->getAppValue(ConfigService::SEARCH_PLATFORM); |
185 | - $output->writeln('- Search Platform:' . (($select === '') ? ' (none selected)' : '')); |
|
185 | + $output->writeln('- Search Platform:'.(($select === '') ? ' (none selected)' : '')); |
|
186 | 186 | |
187 | 187 | foreach ($platforms as $platformWrapper) { |
188 | 188 | $platform = $platformWrapper->getPlatform(); |
189 | 189 | $selected = ($platformWrapper->getClass() === $select) ? '(Selected)' : ''; |
190 | - $output->writeln($platform->getName() . ' ' . $platformWrapper->getVersion() . ' ' . $selected); |
|
190 | + $output->writeln($platform->getName().' '.$platformWrapper->getVersion().' '.$selected); |
|
191 | 191 | try { |
192 | 192 | echo json_encode($platform->getConfiguration(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); |
193 | 193 | } catch (Exception $e) { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | |
219 | 219 | foreach ($providers as $providerWrapper) { |
220 | 220 | $provider = $providerWrapper->getProvider(); |
221 | - $output->writeln($provider->getName() . ' ' . $providerWrapper->getVersion()); |
|
221 | + $output->writeln($provider->getName().' '.$providerWrapper->getVersion()); |
|
222 | 222 | echo json_encode($provider->getConfiguration(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); |
223 | 223 | $output->writeln(''); |
224 | 224 | } |