Completed
Push — master ( 74a697...a570e0 )
by Maxence
26s queued 12s
created
lib/Service/PlatformService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.