Completed
Push — master ( e5ee26...c91a04 )
by Maxence
01:58
created
lib/Model/SearchRequest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
 		$options = ['is', 'show'];
155 155
 
156 156
 		if (in_array($kw, $options)) {
157
-			$this->addOption($kw . '_' . $value, '1');
157
+			$this->addOption($kw.'_'.$value, '1');
158 158
 
159 159
 			return true;
160 160
 		}
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
 	}
219 219
 
220 220
 	/**
221
-	 * @param $key
222
-	 * @param $value
221
+	 * @param string $key
222
+	 * @param string $value
223 223
 	 *
224 224
 	 * @return $this
225 225
 	 */
@@ -315,7 +315,6 @@  discard block
 block discarded – undo
315 315
 
316 316
 
317 317
 	/**
318
-	 * @param array $query
319 318
 	 *
320 319
 	 * @return $this
321 320
 	 */
@@ -334,7 +333,6 @@  discard block
 block discarded – undo
334 333
 
335 334
 
336 335
 	/**
337
-	 * @param array $query
338 336
 	 *
339 337
 	 * @return $this
340 338
 	 */
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
@@ -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.