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