Code Duplication    Length = 8-8 lines in 2 locations

maintenance/namespaceDupes.php 2 locations

@@ 303-310 (lines=8) @@
300
					$this->output( "$logTitle *** $logStatus\n" );
301
					$pageOK = false;
302
					break;
303
				case 'move':
304
					$this->output( "$logTitle -> " .
305
						$newTitle->getPrefixedDBkey() . " ($logStatus)$dryRunNote\n" );
306
307
					if ( $options['fix'] ) {
308
						$pageOK = $this->movePage( $row->page_id, $newTitle );
309
					}
310
					break;
311
				case 'merge':
312
					$this->output( "$logTitle => " .
313
						$newTitle->getPrefixedDBkey() . " (merge)$dryRunNote\n" );
@@ 311-318 (lines=8) @@
308
						$pageOK = $this->movePage( $row->page_id, $newTitle );
309
					}
310
					break;
311
				case 'merge':
312
					$this->output( "$logTitle => " .
313
						$newTitle->getPrefixedDBkey() . " (merge)$dryRunNote\n" );
314
315
					if ( $options['fix'] ) {
316
						$pageOK = $this->mergePage( $row, $newTitle );
317
					}
318
					break;
319
			}
320
321
			if ( $pageOK ) {