Completed
Pull Request — master (#667)
by Maxence
32s
created
lib/Service/IndexService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
 		IFullTextSearchPlatform $platform, IFullTextSearchProvider $provider, string $userId,
156 156
 		IndexOptions $options
157 157
 	) {
158
-		$this->updateRunnerAction('generateIndex' . $provider->getName());
158
+		$this->updateRunnerAction('generateIndex'.$provider->getName());
159 159
 		$this->updateRunnerInfoArray(
160 160
 			[
161 161
 				'userId' => $userId,
Please login to merge, or discard this patch.
lib/Service/ConfigService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 			$defaultValue = $this->defaults[$key];
144 144
 		}
145 145
 
146
-		return (string) $this->config->getAppValue(Application::APP_ID, $key, $defaultValue);
146
+		return (string)$this->config->getAppValue(Application::APP_ID, $key, $defaultValue);
147 147
 	}
148 148
 
149 149
 	/**
Please login to merge, or discard this patch.
lib/Service/CollectionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
 		}
128 128
 
129 129
 		return array_map(
130
-			function (Index $index): array {
130
+			function(Index $index): array {
131 131
 				return $index->asSitemap($this->urlGenerator);
132 132
 			},
133 133
 			$this->indexesRequest->getQueuedIndexes($collection, false, $length)
Please login to merge, or discard this patch.
lib/Command/CollectionList.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,10 +74,10 @@
 block discarded – undo
74 74
 	 */
75 75
 	protected function execute(InputInterface $input, OutputInterface $output) {
76 76
 		$collections = $this->collectionService->getCollections();
77
-		$output->writeln('found ' . sizeof($collections) . ' collection(s)');
77
+		$output->writeln('found '.sizeof($collections).' collection(s)');
78 78
 
79 79
 		foreach ($this->collectionService->getCollections() as $collection) {
80
-			$output->writeln('- ' . $collection);
80
+			$output->writeln('- '.$collection);
81 81
 		}
82 82
 
83 83
 		return 0;
Please login to merge, or discard this patch.
lib/Command/CollectionInit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 
119 119
 		$this->cliService->createPanel(
120 120
 			'collection', [
121
-							'┌─ Collection ' . $collection . ' ────',
121
+							'┌─ Collection '.$collection.' ────',
122 122
 							'│ ProviderId, UserId: <info>%providerId%</info> / <info>%userId%</info>',
123 123
 							'│ Chunk: <info>%chunkCurr:3s%</info>/<info>%chunkTotal%</info>',
124 124
 							'│ Document: <info>%documentCurr:6s%</info>/<info>%documentChunk%</info>',
Please login to merge, or discard this patch.