@@ -118,7 +118,7 @@ discard block |
||
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 |
||
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 |
||
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 |