Completed
Pull Request — master (#266)
by Morris
02:00
created
lib/Controller/ApiController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
 	 * @return DataResponse
78 78
 	 */
79 79
 	public function search($request) {
80
-		$this->miscService->log('____' . json_encode($request));
80
+		$this->miscService->log('____'.json_encode($request));
81 81
 		return $this->searchDocuments(SearchRequest::fromJSON($request));
82 82
 	}
83 83
 
Please login to merge, or discard this patch.
lib/Command/Check.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 		}
104 104
 
105 105
 		$output->writeln(
106
-			'Full text search ' . $this->configService->getAppValue('installed_version')
106
+			'Full text search '.$this->configService->getAppValue('installed_version')
107 107
 		);
108 108
 		$output->writeln(' ');
109 109
 
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
 		$output->writeln('- Search Platform:');
175 175
 
176
-		$output->writeln($platform->getName() . ' ' . $platform->getVersion());
176
+		$output->writeln($platform->getName().' '.$platform->getVersion());
177 177
 		echo json_encode($platform->getConfiguration(), JSON_PRETTY_PRINT);
178 178
 
179 179
 		$output->writeln(' ');
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 		$output->writeln('- Content Providers:');
199 199
 
200 200
 		foreach ($providers as $provider) {
201
-			$output->writeln($provider->getName() . ' ' . $provider->getVersion());
201
+			$output->writeln($provider->getName().' '.$provider->getVersion());
202 202
 			echo json_encode($provider->getConfiguration(), JSON_PRETTY_PRINT);
203 203
 			$output->writeln('');
204 204
 		}
Please login to merge, or discard this patch.