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