Completed
Push — master ( d25011...6cd78d )
by Maxence
43s queued 15s
created
lib/Service/CliService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
 			}
183 183
 		}
184 184
 
185
-		$this->display->setFormat(implode("\n", $format) . "\n");
185
+		$this->display->setFormat(implode("\n", $format)."\n");
186 186
 		$this->refreshInfo();
187 187
 		$this->display->start();
188 188
 	}
Please login to merge, or discard this patch.
lib/Command/Search.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -123,13 +123,13 @@
 block discarded – undo
123 123
 	 */
124 124
 	private function displaySearchResult(ISearchResult $searchResult) {
125 125
 		/** @var SearchResult $searchResult */
126
-		echo '> ' . $searchResult->getProvider()
127
-								 ->getName() . "\n";
126
+		echo '> '.$searchResult->getProvider()
127
+								 ->getName()."\n";
128 128
 
129 129
 		/** @var IIndexDocument[] $result */
130 130
 		$result = $searchResult->getDocuments();
131 131
 		foreach ($result as $document) {
132
-			echo ' - ' . $document->getId() . ' score:' . $document->getScore() . "\n";
132
+			echo ' - '.$document->getId().' score:'.$document->getScore()."\n";
133 133
 		}
134 134
 	}
135 135
 
Please login to merge, or discard this patch.
lib/Command/DocumentProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -126,12 +126,12 @@
 block discarded – undo
126 126
 		$output->writeln(substr($content, 0, 80));
127 127
 
128 128
 		$parts = $indexDocument->getParts();
129
-		$output->writeln(sizeof($parts) . ' Part(s)');
129
+		$output->writeln(sizeof($parts).' Part(s)');
130 130
 		foreach (array_keys($parts) as $part) {
131 131
 			$output->writeln(
132
-				"'" . $part . "' " . substr($parts[$part], 0, 80) . '   (size: ' . strlen(
132
+				"'".$part."' ".substr($parts[$part], 0, 80).'   (size: '.strlen(
133 133
 					$parts[$part]
134
-				) . ')'
134
+				).')'
135 135
 			);
136 136
 		}
137 137
 
Please login to merge, or discard this patch.
lib/Command/Live.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 
269 269
 			} catch (Exception $e) {
270 270
 				$this->miscService->log(
271
-					'Exception while live index: ' . get_class($e) . ' - ' . $e->getMessage()
271
+					'Exception while live index: '.get_class($e).' - '.$e->getMessage()
272 272
 				);
273 273
 
274 274
 				if (!$input->getOption('service')) {
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
 		$index = $result['index'];
568 568
 		$resultIndex = '';
569 569
 		if ($index !== null) {
570
-			$resultIndex = $index->getProviderId() . ':' . $index->getDocumentId();
570
+			$resultIndex = $index->getProviderId().':'.$index->getDocumentId();
571 571
 		}
572 572
 
573 573
 
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 		$index = $error['index'];
626 626
 		$errorIndex = '';
627 627
 		if ($index !== null) {
628
-			$errorIndex = $index->getProviderId() . ':' . $index->getDocumentId();
628
+			$errorIndex = $index->getProviderId().':'.$index->getDocumentId();
629 629
 		}
630 630
 
631 631
 		$width = $this->terminal->getWidth() - 13;
Please login to merge, or discard this patch.
lib/Model/SearchRequest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @return ISearchRequest
170 170
 	 */
171 171
 	public function addSearch(string $search): ISearchRequest {
172
-		$this->search .= ' ' . $search;
172
+		$this->search .= ' '.$search;
173 173
 
174 174
 		return $this;
175 175
 	}
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
 		$options = ['is', 'show'];
213 213
 		if (in_array($kw, $options)) {
214
-			$this->addOption($kw . '_' . $value, '1');
214
+			$this->addOption($kw.'_'.$value, '1');
215 215
 
216 216
 			return true;
217 217
 		}
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 		$valuedSubOptions = ['and'];
227 227
 		if (in_array($kw, $valuedSubOptions)) {
228 228
 			list($key, $value) = explode(':', $value, 2);
229
-			$this->addMultipleOption($kw . ':' . $key, $value);
229
+			$this->addMultipleOption($kw.':'.$key, $value);
230 230
 
231 231
 			return true;
232 232
 		}
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
 		foreach ($ak as $source) {
539 539
 			$tags = $this->subTags[$source];
540 540
 			foreach ($tags as $tag) {
541
-				$subTags[] = $source . '_' . $tag;
541
+				$subTags[] = $source.'_'.$tag;
542 542
 			}
543 543
 		}
544 544
 
Please login to merge, or discard this patch.
lib/Model/Runner.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 		}
251 251
 
252 252
 		if ($color !== '') {
253
-			$this->info[$info . 'Colored'] = '<' . $color . '>' . $value . '</' . $color . '>';
253
+			$this->info[$info.'Colored'] = '<'.$color.'>'.$value.'</'.$color.'>';
254 254
 		}
255 255
 	}
256 256
 
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
 			return;
394 394
 		}
395 395
 
396
-		$this->setInfo('_memory', round((memory_get_usage() / 1024 / 1024)) . ' MB');
396
+		$this->setInfo('_memory', round((memory_get_usage() / 1024 / 1024)).' MB');
397 397
 		$this->ramUpdate = $tick;
398 398
 	}
399 399
 
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 	 */
407 407
 	public function exception(string $reason, bool $stop) {
408 408
 		if (!$stop) {
409
-			$this->output('Exception: ' . $reason);
409
+			$this->output('Exception: '.$reason);
410 410
 			// TODO: feed an array of exceptions for log;
411 411
 		} else {
412 412
 			try {
Please login to merge, or discard this patch.
lib/Service/TestService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	public function generateIndexDocumentContentLicense(IIndexOptions $options): IIndexDocument {
86 86
 		$indexDocument = $this->generateIndexDocument(self::DOCUMENT_TYPE_LICENSE);
87 87
 
88
-		$content = file_get_contents(__DIR__ . '/../../LICENSE');
88
+		$content = file_get_contents(__DIR__.'/../../LICENSE');
89 89
 		$indexDocument->setContent($content);
90 90
 
91 91
 		if ($options === null) {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 			$orig = call_user_func([$origIndex, $method]);
143 143
 			$compare = call_user_func([$compareIndex, $method]);
144 144
 			if ($orig !== $compare) {
145
-				throw new Exception($method . '() orig:' . $orig . ' compare:' . $compare);
145
+				throw new Exception($method.'() orig:'.$orig.' compare:'.$compare);
146 146
 			}
147 147
 		}
148 148
 	}
Please login to merge, or discard this patch.
lib/Service/ProviderService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 		$provider = OC::$server->query((string)$providerId);
123 123
 		if (!($provider instanceof IFullTextSearchProvider)) {
124 124
 			throw new ProviderIsNotCompatibleException(
125
-				$providerId . ' is not a compatible IFullTextSearchProvider'
125
+				$providerId.' is not a compatible IFullTextSearchProvider'
126 126
 			);
127 127
 		}
128 128
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 			}
212 212
 		}
213 213
 
214
-		throw new ProviderDoesNotExistException('Provider \'' . $providerId . '\' does not exist');
214
+		throw new ProviderDoesNotExistException('Provider \''.$providerId.'\' does not exist');
215 215
 	}
216 216
 
217 217
 
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
 				$this->loadProvider($appId, $provider);
306 306
 			} catch (Exception $e) {
307 307
 				$this->miscService->log(
308
-					'Issue while loading Provider: ' . $appId . '/' . $provider . ' - ' . get_class(
308
+					'Issue while loading Provider: '.$appId.'/'.$provider.' - '.get_class(
309 309
 						$e
310
-					) . ' ' . $e->getMessage()
310
+					).' '.$e->getMessage()
311 311
 				);
312 312
 			}
313 313
 		}
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 			$knownProvider = $providerWrapper->getProvider();
326 326
 			if ($knownProvider->getId() === $provider->getId()) {
327 327
 				throw new ProviderIsNotUniqueException(
328
-					'FullTextSearchProvider ' . $provider->getId() . ' already exist'
328
+					'FullTextSearchProvider '.$provider->getId().' already exist'
329 329
 				);
330 330
 			}
331 331
 		}
Please login to merge, or discard this patch.
lib/Cron/Index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 			$this->runner->stop();
104 104
 		} catch (RunnerAlreadyUpException $e) {
105 105
 		} catch (Exception $e) {
106
-			$this->miscService->log('Exception while cronIndex: ' . get_class($e) . ' - ' . $e->getMessage());
106
+			$this->miscService->log('Exception while cronIndex: '.get_class($e).' - '.$e->getMessage());
107 107
 			$this->runner->exception($e->getMessage(), true);
108 108
 		}
109 109
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
 				$this->indexService->updateDocument($platform, $provider, $index);
135 135
 			} catch (Throwable | Exception $e) {
136
-				$this->runner->exception(get_class($e) . ' - ' . $e->getMessage(), false);
136
+				$this->runner->exception(get_class($e).' - '.$e->getMessage(), false);
137 137
 				// TODO - upgrade error number - after too many errors, delete index
138 138
 				// TODO - do not count error if elasticsearch is down.
139 139
 			}
Please login to merge, or discard this patch.