Completed
Push — master ( 0882e3...83ab72 )
by Maxence
05:40
created
lib/Command/Check.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	protected function execute(InputInterface $input, OutputInterface $output) {
96 96
 
97 97
 		$output->writeln(
98
-			'Full text search ' . $this->configService->getAppValue('installed_version')
98
+			'Full text search '.$this->configService->getAppValue('installed_version')
99 99
 		);
100 100
 		$output->writeln(' ');
101 101
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
 		$output->writeln('- Search Platform:');
122 122
 
123
-		$output->writeln($platform->getName() . ' ' . $platform->getVersion());
123
+		$output->writeln($platform->getName().' '.$platform->getVersion());
124 124
 		echo json_encode($platform->getConfiguration(), JSON_PRETTY_PRINT);
125 125
 
126 126
 		$output->writeln(' ');
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 		$output->writeln('- Content Providers:');
146 146
 
147 147
 		foreach ($providers as $provider) {
148
-			$output->writeln($provider->getName() . ' ' . $provider->getVersion());
148
+			$output->writeln($provider->getName().' '.$provider->getVersion());
149 149
 			echo json_encode($provider->getConfiguration(), JSON_PRETTY_PRINT);
150 150
 			$output->writeln('');
151 151
 		}
Please login to merge, or discard this patch.