Completed
Push — master ( f5d374...685013 )
by mw
47:54 queued 25:05
created
src/Maintenance/DataRebuilder.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,6 +301,9 @@  discard block
 block discarded – undo
301 301
 		return true;
302 302
 	}
303 303
 
304
+	/**
305
+	 * @param double $byIdDataRebuildDispatcher
306
+	 */
304 307
 	private function doExecuteFor( $byIdDataRebuildDispatcher, &$id ) {
305 308
 
306 309
 		if ( !$this->options->has( 'ignore-exceptions' ) ) {
@@ -406,6 +409,9 @@  discard block
 block discarded – undo
406 409
 		$this->reportMessage( "\n\n{$matchesCount} IDs removed.\n\n" );
407 410
 	}
408 411
 
412
+	/**
413
+	 * @param string $startIdFile
414
+	 */
409 415
 	private function idFileIsWritable( $startIdFile ) {
410 416
 
411 417
 		if ( !is_writable( file_exists( $startIdFile ) ? $startIdFile : dirname( $startIdFile ) ) ) {
@@ -422,7 +428,7 @@  discard block
 block discarded – undo
422 428
 	}
423 429
 
424 430
 	/**
425
-	 * @param array $options
431
+	 * @param Options $options
426 432
 	 */
427 433
 	private function setFiltersFromOptions( Options $options ) {
428 434
 		$this->filters = array();
@@ -442,6 +448,10 @@  discard block
 block discarded – undo
442 448
 		}
443 449
 	}
444 450
 
451
+	/**
452
+	 * @param boolean $verbose
453
+	 * @param string $progress
454
+	 */
445 455
 	private function doPrintDotProgressIndicator( $verbose, $counter, $progress ) {
446 456
 
447 457
 		if ( ( $counter - 1 ) % 60 === 0 ) {
Please login to merge, or discard this patch.