Completed
Pull Request — master (#266)
by Morris
02:00
created
lib/Command/Search.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,13 +105,13 @@
 block discarded – undo
105 105
 
106 106
 	private function displaySearchResult(SearchResult $searchResult) {
107 107
 
108
-		echo '> ' . $searchResult->getProvider()
109
-								 ->getName() . "\n";
108
+		echo '> '.$searchResult->getProvider()
109
+								 ->getName()."\n";
110 110
 
111 111
 		/** @var IndexDocument[] $result */
112 112
 		$result = $searchResult->getDocuments();
113 113
 		foreach ($result as $document) {
114
-			echo ' - ' . $document->getId() . ' score:' . $document->getScore() . "\n";
114
+			echo ' - '.$document->getId().' score:'.$document->getScore()."\n";
115 115
 		}
116 116
 	}
117 117
 
Please login to merge, or discard this patch.
lib/Db/CoreRequestBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -147,8 +147,8 @@  discard block
 block discarded – undo
147 147
 	 */
148 148
 	private function limitToDBField(IQueryBuilder &$qb, $field, $value) {
149 149
 		$expr = $qb->expr();
150
-		$pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : '';
151
-		$qb->andWhere($expr->eq($pf . $field, $qb->createNamedParameter($value)));
150
+		$pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : '';
151
+		$qb->andWhere($expr->eq($pf.$field, $qb->createNamedParameter($value)));
152 152
 	}
153 153
 
154 154
 
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	 */
158 158
 	protected function limitToQueuedIndexes(IQueryBuilder &$qb) {
159 159
 		$expr = $qb->expr();
160
-		$pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias . '.' : '';
161
-		$qb->andWhere($expr->neq($pf . 'status', $qb->createNamedParameter(Index::INDEX_OK)));
160
+		$pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->defaultSelectAlias.'.' : '';
161
+		$qb->andWhere($expr->neq($pf.'status', $qb->createNamedParameter(Index::INDEX_OK)));
162 162
 	}
163 163
 
164 164
 }
Please login to merge, or discard this patch.
lib/Model/Runner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,14 +140,14 @@
 block discarded – undo
140 140
 			return;
141 141
 		}
142 142
 
143
-		$this->output('- RAM: ' . (memory_get_usage() / 1024 / 1024));
143
+		$this->output('- RAM: '.(memory_get_usage() / 1024 / 1024));
144 144
 		$this->ramTick = $tick;
145 145
 	}
146 146
 
147 147
 
148 148
 	public function exception($reason, $stop) {
149 149
 		if (!$stop) {
150
-			$this->output('Exception: ' . $reason);
150
+			$this->output('Exception: '.$reason);
151 151
 			// TODO: feed an array of exceptions for log;
152 152
 		}
153 153
 		$this->runningService->exception($this->tickId, $reason, $stop);
Please login to merge, or discard this patch.
lib/Service/RunningService.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -224,18 +224,18 @@
 block discarded – undo
224 224
 		$preAction = $tick->getAction();
225 225
 
226 226
 		if ($preAction !== '') {
227
-			$preActionTotal = $tick->getInfo($preAction . 'Total', 0);
228
-			$preActionStart = $tick->getInfo($preAction . 'Init', 0);
227
+			$preActionTotal = $tick->getInfo($preAction.'Total', 0);
228
+			$preActionStart = $tick->getInfo($preAction.'Init', 0);
229 229
 
230 230
 			if ($preActionStart > 0) {
231 231
 
232 232
 				$preActionTotal += ($now - $preActionStart);
233
-				$tick->setInfo($preAction . 'Total', $preActionTotal);
234
-				$tick->unsetInfo($preAction . 'Init');
233
+				$tick->setInfo($preAction.'Total', $preActionTotal);
234
+				$tick->unsetInfo($preAction.'Init');
235 235
 			}
236 236
 		}
237 237
 		$tick->setAction($action)
238
-			 ->setInfo($action . 'Init', $now);
238
+			 ->setInfo($action.'Init', $now);
239 239
 	}
240 240
 
241 241
 
Please login to merge, or discard this patch.
lib/Service/ProviderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 		$provider = \OC::$server->query((string)$providerId);
107 107
 		if (!($provider instanceof IFullTextSearchProvider)) {
108 108
 			throw new ProviderIsNotCompatibleException(
109
-				$providerId . ' is not a compatible IFullTextSearchProvider'
109
+				$providerId.' is not a compatible IFullTextSearchProvider'
110 110
 			);
111 111
 		}
112 112
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 			}
188 188
 		}
189 189
 
190
-		throw new ProviderDoesNotExistException('Provider \'' . $providerId . '\' does not exist');
190
+		throw new ProviderDoesNotExistException('Provider \''.$providerId.'\' does not exist');
191 191
 	}
192 192
 
193 193
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 		foreach ($this->providers AS $knownProvider) {
273 273
 			if ($knownProvider->getId() === $provider->getId()) {
274 274
 				throw new ProviderIsNotUniqueException(
275
-					'FullTextSearchProvider ' . $provider->getId() . ' already exist'
275
+					'FullTextSearchProvider '.$provider->getId().' already exist'
276 276
 				);
277 277
 			}
278 278
 		}
Please login to merge, or discard this patch.
lib/Service/SearchService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 			try {
185 185
 				$rights->setCircles(Circles::joinedCircleIds($user->getUID()));
186 186
 			} catch (Exception $e) {
187
-				$this->miscService->log('Circles is set as enabled but: ' . $e->getMessage());
187
+				$this->miscService->log('Circles is set as enabled but: '.$e->getMessage());
188 188
 			}
189 189
 		}
190 190
 
Please login to merge, or discard this patch.
lib/Service/PlatformService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 		$platform = \OC::$server->query((string)$selected);
160 160
 		if (!($platform instanceof IFullTextSearchPlatform)) {
161 161
 			throw new PlatformIsNotCompatibleException(
162
-				$selected . ' is not a compatible FullTextSearchPlatform'
162
+				$selected.' is not a compatible FullTextSearchPlatform'
163 163
 			);
164 164
 		}
165 165
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 
183 183
 		if (!in_array($selected, $this->platforms)) {
184 184
 			throw new PlatformDoesNotExistException(
185
-				'FullTextSearchPlatform ' . $selected . ' is not available'
185
+				'FullTextSearchPlatform '.$selected.' is not available'
186 186
 			);
187 187
 		}
188 188
 
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
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 	public function indexProviderContentFromUser(
117 117
 		IFullTextSearchPlatform $platform, IFullTextSearchProvider $provider, $userId
118 118
 	) {
119
-		$this->updateRunner('generateIndex' . $provider->getName());
119
+		$this->updateRunner('generateIndex'.$provider->getName());
120 120
 		$documents = $provider->generateIndexableDocuments($userId);
121 121
 
122 122
 		//$maxSize = sizeof($documents);
Please login to merge, or discard this patch.
lib/Command/Index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
 			$providers = $this->providerService->getProviders();
116 116
 			foreach ($providers as $provider) {
117
-				$this->runner->output('indexing ' . $provider->getName() . '.');
117
+				$this->runner->output('indexing '.$provider->getName().'.');
118 118
 				$provider->setRunner($this->runner);
119 119
 				$this->indexProvider($provider);
120 120
 			}
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 		$users = $this->userManager->search('');
142 142
 
143 143
 		foreach ($users as $user) {
144
-			$this->runner->output(' USER: ' . $user->getUID());
144
+			$this->runner->output(' USER: '.$user->getUID());
145 145
 			$this->indexService->indexProviderContentFromUser(
146 146
 				$platform, $provider, $user->getUID()
147 147
 			);
Please login to merge, or discard this patch.