Completed
Push — master ( f0b8b1...988dc2 )
by Maxence
02:48 queued 57s
created
lib/Command/Search.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,13 +105,13 @@
 block discarded – undo
105 105
 
106 106
 	private function displaySearchResult(SearchResult $searchResult) {
107 107
 
108
-		echo '> ' . $searchResult->getProvider()
109
-								 ->getName() . "\n";
108
+		echo '> '.$searchResult->getProvider()
109
+								 ->getName()."\n";
110 110
 
111 111
 		/** @var IndexDocument[] $result */
112 112
 		$result = $searchResult->getDocuments();
113 113
 		foreach ($result as $document) {
114
-			echo ' - ' . $document->getId() . ' score:' . $document->getScore() . "\n";
114
+			echo ' - '.$document->getId().' score:'.$document->getScore()."\n";
115 115
 		}
116 116
 	}
117 117
 
Please login to merge, or discard this patch.
lib/Service/RunningService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -224,18 +224,18 @@
 block discarded – undo
224 224
 		$preAction = $tick->getAction();
225 225
 
226 226
 		if ($preAction !== '') {
227
-			$preActionTotal = $tick->getInfo($preAction . 'Total', 0);
228
-			$preActionStart = $tick->getInfo($preAction . 'Init', 0);
227
+			$preActionTotal = $tick->getInfo($preAction.'Total', 0);
228
+			$preActionStart = $tick->getInfo($preAction.'Init', 0);
229 229
 
230 230
 			if ($preActionStart > 0) {
231 231
 
232 232
 				$preActionTotal += ($now - $preActionStart);
233
-				$tick->setInfo($preAction . 'Total', $preActionTotal);
234
-				$tick->unsetInfo($preAction . 'Init');
233
+				$tick->setInfo($preAction.'Total', $preActionTotal);
234
+				$tick->unsetInfo($preAction.'Init');
235 235
 			}
236 236
 		}
237 237
 		$tick->setAction($action)
238
-			 ->setInfo($action . 'Init', $now);
238
+			 ->setInfo($action.'Init', $now);
239 239
 	}
240 240
 
241 241
 
Please login to merge, or discard this patch.
lib/Service/ProviderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 		$provider = \OC::$server->query((string)$providerId);
107 107
 		if (!($provider instanceof IFullTextSearchProvider)) {
108 108
 			throw new ProviderIsNotCompatibleException(
109
-				$providerId . ' is not a compatible IFullTextSearchProvider'
109
+				$providerId.' is not a compatible IFullTextSearchProvider'
110 110
 			);
111 111
 		}
112 112
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 			}
188 188
 		}
189 189
 
190
-		throw new ProviderDoesNotExistException('Provider \'' . $providerId . '\' does not exist');
190
+		throw new ProviderDoesNotExistException('Provider \''.$providerId.'\' does not exist');
191 191
 	}
192 192
 
193 193
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 		foreach ($this->providers AS $knownProvider) {
273 273
 			if ($knownProvider->getId() === $provider->getId()) {
274 274
 				throw new ProviderIsNotUniqueException(
275
-					'FullTextSearchProvider ' . $provider->getId() . ' already exist'
275
+					'FullTextSearchProvider '.$provider->getId().' already exist'
276 276
 				);
277 277
 			}
278 278
 		}
Please login to merge, or discard this patch.
lib/Service/SearchService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 			try {
185 185
 				$rights->setCircles(Circles::joinedCircleIds($user->getUID()));
186 186
 			} catch (Exception $e) {
187
-				$this->miscService->log('Circles is set as enabled but: ' . $e->getMessage());
187
+				$this->miscService->log('Circles is set as enabled but: '.$e->getMessage());
188 188
 			}
189 189
 		}
190 190
 
Please login to merge, or discard this patch.
lib/Service/PlatformService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 		$platform = \OC::$server->query((string)$selected);
160 160
 		if (!($platform instanceof IFullTextSearchPlatform)) {
161 161
 			throw new PlatformIsNotCompatibleException(
162
-				$selected . ' is not a compatible FullTextSearchPlatform'
162
+				$selected.' is not a compatible FullTextSearchPlatform'
163 163
 			);
164 164
 		}
165 165
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 
183 183
 		if (!in_array($selected, $this->platforms)) {
184 184
 			throw new PlatformDoesNotExistException(
185
-				'FullTextSearchPlatform ' . $selected . ' is not available'
185
+				'FullTextSearchPlatform '.$selected.' is not available'
186 186
 			);
187 187
 		}
188 188
 
Please login to merge, or discard this patch.
lib/Command/Check.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 		}
104 104
 
105 105
 		$output->writeln(
106
-			'Full text search ' . $this->configService->getAppValue('installed_version')
106
+			'Full text search '.$this->configService->getAppValue('installed_version')
107 107
 		);
108 108
 		$output->writeln(' ');
109 109
 
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
 		$output->writeln('- Search Platform:');
175 175
 
176
-		$output->writeln($platform->getName() . ' ' . $platform->getVersion());
176
+		$output->writeln($platform->getName().' '.$platform->getVersion());
177 177
 		echo json_encode($platform->getConfiguration(), JSON_PRETTY_PRINT);
178 178
 
179 179
 		$output->writeln(' ');
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 		$output->writeln('- Content Providers:');
199 199
 
200 200
 		foreach ($providers as $provider) {
201
-			$output->writeln($provider->getName() . ' ' . $provider->getVersion());
201
+			$output->writeln($provider->getName().' '.$provider->getVersion());
202 202
 			echo json_encode($provider->getConfiguration(), JSON_PRETTY_PRINT);
203 203
 			$output->writeln('');
204 204
 		}
Please login to merge, or discard this patch.
lib/Model/SearchRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
 		$options = ['is', 'show'];
155 155
 
156 156
 		if (in_array($kw, $options)) {
157
-			$this->addOption($kw . '_' . $value, '1');
157
+			$this->addOption($kw.'_'.$value, '1');
158 158
 
159 159
 			return true;
160 160
 		}
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
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	public function generateIndexDocumentContentLicense(IndexOptions $options = null) {
78 78
 		$indexDocument = $this->generateIndexDocument(self::DOCUMENT_TYPE_LICENSE);
79 79
 
80
-		$content = file_get_contents(__DIR__ . '/../../LICENSE');
80
+		$content = file_get_contents(__DIR__.'/../../LICENSE');
81 81
 		$indexDocument->setContent($content);
82 82
 
83 83
 		if ($options === null) {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 			$orig = call_user_func([$origIndex, $method]);
135 135
 			$compare = call_user_func([$compareIndex, $method]);
136 136
 			if ($orig !== $compare) {
137
-				throw new \Exception($method . '() orig:' . $orig . ' compare:' . $compare);
137
+				throw new \Exception($method.'() orig:'.$orig.' compare:'.$compare);
138 138
 
139 139
 			};
140 140
 		}
Please login to merge, or discard this patch.
lib/Command/Test.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 			$output->write(' ', true);
204 204
 		}
205 205
 
206
-		$output->write($line . ' ', false);
206
+		$output->write($line.' ', false);
207 207
 	}
208 208
 
209 209
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 		$this->output($output, 'Testing mocked provider: get indexable documents.');
254 254
 		$indexableDocuments =
255 255
 			$testProvider->generateIndexableDocuments(TestService::DOCUMENT_USER1);
256
-		$this->output($output, '(' . sizeof($indexableDocuments) . ' items)', false);
256
+		$this->output($output, '('.sizeof($indexableDocuments).' items)', false);
257 257
 		$this->output($output, true);
258 258
 	}
259 259
 
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 	private function testLoadingPlatform($output) {
268 268
 		$this->output($output, 'Loading search platform.');
269 269
 		$testPlatform = $this->platformService->getPlatform();
270
-		$this->output($output, '(' . $testPlatform->getName() . ')', false);
270
+		$this->output($output, '('.$testPlatform->getName().')', false);
271 271
 		$this->output($output, true);
272 272
 
273 273
 		$this->output($output, 'Testing search platform.');
@@ -357,13 +357,13 @@  discard block
 block discarded – undo
357 357
 			);
358 358
 
359 359
 			$this->output(
360
-				$output, '(size: ' . $indexDocument->getContentSize() . ')', false
360
+				$output, '(size: '.$indexDocument->getContentSize().')', false
361 361
 			);
362 362
 			$this->output($output, true);
363 363
 		} catch (Exception $e) {
364 364
 			throw new Exception(
365
-				"Issue while getting test document '" . TestService::DOCUMENT_TYPE_LICENSE
366
-				. "' from search platform: " . $e->getMessage()
365
+				"Issue while getting test document '".TestService::DOCUMENT_TYPE_LICENSE
366
+				. "' from search platform: ".$e->getMessage()
367 367
 			);
368 368
 		}
369 369
 
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
 	) {
537 537
 		$this->output(
538 538
 			$output,
539
-			" - '" . $search . "'" . (($moreOutput === '') ? '' : ' - ' . $moreOutput . ' - ')
539
+			" - '".$search."'".(($moreOutput === '') ? '' : ' - '.$moreOutput.' - ')
540 540
 		);
541 541
 		$request = new SearchRequest();
542 542
 
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
 		$searchResult = $testPlatform->searchDocuments($testProvider, $access, $request);
545 545
 		$this->output(
546 546
 			$output,
547
-			'(result: ' . $searchResult->getCount() . ', expected: ' . json_encode($expected) . ')',
547
+			'(result: '.$searchResult->getCount().', expected: '.json_encode($expected).')',
548 548
 			false
549 549
 		);
550 550
 		$this->compareSearchResult($searchResult, $expected);
@@ -608,12 +608,12 @@  discard block
 block discarded – undo
608 608
 	private function compareSearchResult(SearchResult $searchResult, $entries) {
609 609
 		$documents = $searchResult->getDocuments();
610 610
 		if (sizeof($documents) !== sizeof($entries)) {
611
-			throw new \Exception('Unexpected SearchResult: ' . json_encode($searchResult));
611
+			throw new \Exception('Unexpected SearchResult: '.json_encode($searchResult));
612 612
 		}
613 613
 
614 614
 		foreach ($documents as $document) {
615 615
 			if (!in_array($document->getId(), $entries)) {
616
-				throw new \Exception('Unexpected Document: ' . json_encode($document));
616
+				throw new \Exception('Unexpected Document: '.json_encode($document));
617 617
 			}
618 618
 		}
619 619
 	}
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
 	 * @throws InterruptException
627 627
 	 */
628 628
 	private function pause(OutputInterface $output, $s) {
629
-		$this->output($output, 'Pausing ' . $s . ' seconds');
629
+		$this->output($output, 'Pausing '.$s.' seconds');
630 630
 
631 631
 		for ($i = 1; $i <= $s; $i++) {
632 632
 			if (time_nanosleep(1, 0) !== true) {
Please login to merge, or discard this patch.