Completed
Push — master ( ed5d19...edc742 )
by Maxence
45s queued 40s
created
lib/Command/Live.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 		$index = $result['index'];
515 515
 		$resultIndex = '';
516 516
 		if ($index !== null) {
517
-			$resultIndex = $index->getProviderId() . ':' . $index->getDocumentId();
517
+			$resultIndex = $index->getProviderId().':'.$index->getDocumentId();
518 518
 		}
519 519
 
520 520
 
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
 		$index = $error['index'];
572 572
 		$errorIndex = '';
573 573
 		if ($index !== null) {
574
-			$errorIndex = $index->getProviderId() . ':' . $index->getDocumentId();
574
+			$errorIndex = $index->getProviderId().':'.$index->getDocumentId();
575 575
 		}
576 576
 
577 577
 		$width = $this->terminal->getWidth() - 13;
Please login to merge, or discard this patch.
lib/Command/Index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 			/** do not get stuck while waiting interactive input */
169 169
 			try {
170 170
 				readline_callback_handler_install(
171
-					'', function () {
171
+					'', function() {
172 172
 				}
173 173
 				);
174 174
 			} catch (Throwable $t) {
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 		$index = $error['index'];
573 573
 		$errorIndex = '';
574 574
 		if ($index !== null) {
575
-			$errorIndex = $index->getProviderId() . ':' . $index->getDocumentId();
575
+			$errorIndex = $index->getProviderId().':'.$index->getDocumentId();
576 576
 		}
577 577
 
578 578
 		$width = $this->terminal->getWidth() - 13;
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
 		$index = $result['index'];
625 625
 		$resultIndex = '';
626 626
 		if ($index !== null) {
627
-			$resultIndex = $index->getProviderId() . ':' . $index->getDocumentId();
627
+			$resultIndex = $index->getProviderId().':'.$index->getDocumentId();
628 628
 		}
629 629
 
630 630
 
Please login to merge, or discard this patch.
lib/Service/ProviderService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		$provider = OC::$server->query((string)$providerId);
92 92
 		if (!($provider instanceof IFullTextSearchProvider)) {
93 93
 			throw new ProviderIsNotCompatibleException(
94
-				$providerId . ' is not a compatible IFullTextSearchProvider'
94
+				$providerId.' is not a compatible IFullTextSearchProvider'
95 95
 			);
96 96
 		}
97 97
 
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 			}
175 175
 		}
176 176
 
177
-		throw new ProviderDoesNotExistException('Provider \'' . $providerId . '\' does not exist');
177
+		throw new ProviderDoesNotExistException('Provider \''.$providerId.'\' does not exist');
178 178
 	}
179 179
 
180 180
 
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 			try {
237 237
 				$this->loadProvider($appId, $provider);
238 238
 			} catch (Exception $e) {
239
-				$this->logger->warning('Issue while loading Provider: ' . $appId . '/' . $provider, ['exception' => $e]);
239
+				$this->logger->warning('Issue while loading Provider: '.$appId.'/'.$provider, ['exception' => $e]);
240 240
 			}
241 241
 		}
242 242
 	}
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 			$knownProvider = $providerWrapper->getProvider();
254 254
 			if ($knownProvider->getId() === $provider->getId()) {
255 255
 				throw new ProviderIsNotUniqueException(
256
-					'FullTextSearchProvider ' . $provider->getId() . ' already exist'
256
+					'FullTextSearchProvider '.$provider->getId().' already exist'
257 257
 				);
258 258
 			}
259 259
 		}
Please login to merge, or discard this patch.