Completed
Push — master ( d92761...e5ee26 )
by Maxence
04:52
created
lib/Command/Index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 					continue;
124 124
 				}
125 125
 
126
-				$this->runner->output('indexing ' . $provider->getName() . '.');
126
+				$this->runner->output('indexing '.$provider->getName().'.');
127 127
 				$provider->setRunner($this->runner);
128 128
 				$provider->setIndexOptions($options);
129 129
 				$this->indexProvider($provider, $options);
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 				continue;
158 158
 			}
159 159
 
160
-			$this->runner->output(' USER: ' . $user->getUID());
160
+			$this->runner->output(' USER: '.$user->getUID());
161 161
 			$this->indexService->indexProviderContentFromUser(
162 162
 				$platform, $provider, $user->getUID(), $options
163 163
 			);
Please login to merge, or discard this patch.
lib/Service/IndexService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	public function indexProviderContentFromUser(
122 122
 		IFullTextSearchPlatform $platform, IFullTextSearchProvider $provider, $userId, $options
123 123
 	) {
124
-		$this->updateRunner('generateIndex' . $provider->getName());
124
+		$this->updateRunner('generateIndex'.$provider->getName());
125 125
 		$documents = $provider->generateIndexableDocuments($userId);
126 126
 
127 127
 		//$maxSize = sizeof($documents);
Please login to merge, or discard this patch.