Completed
Pull Request — master (#749)
by Robin
15s
created
lib/Service/PlatformService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 			try {
119 119
 				$platform = OC::$server->get((string)$class);
120 120
 				if (!($platform instanceof IFullTextSearchPlatform)) {
121
-					$this->miscService->log($class . ' does not implement ' . IFullTextSearchPlatform::class);
121
+					$this->miscService->log($class.' does not implement '.IFullTextSearchPlatform::class);
122 122
 					continue;
123 123
 				}
124 124
 				
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 		$platform = OC::$server->query((string)$selected->getClass());
177 177
 		if (!($platform instanceof IFullTextSearchPlatform)) {
178 178
 			throw new PlatformIsNotCompatibleException(
179
-				$selected->getClass() . ' is not a compatible FullTextSearchPlatform'
179
+				$selected->getClass().' is not a compatible FullTextSearchPlatform'
180 180
 			);
181 181
 		}
182 182
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 		}
209 209
 
210 210
 		throw new PlatformDoesNotExistException(
211
-			'FullTextSearchPlatform ' . $selected . ' is not available'
211
+			'FullTextSearchPlatform '.$selected.' is not available'
212 212
 		);
213 213
 	}
214 214
 
Please login to merge, or discard this patch.