Code Duplication    Length = 6-6 lines in 2 locations

src/classes/installable.php 2 locations

@@ 361-366 (lines=6) @@
358
359
		$db_tables = wordpoints_map_context_shortcuts( $this->get_db_tables() );
360
361
		if ( isset( $db_tables['single'] ) ) {
362
			$routines['single'][] = new WordPoints_Installer_DB_Tables(
363
				$db_tables['single']
364
				, 'base'
365
			);
366
		}
367
368
		if ( isset( $db_tables['site'] ) ) {
369
			$routines['site'][] = new WordPoints_Installer_DB_Tables(
@@ 374-379 (lines=6) @@
371
			);
372
		}
373
374
		if ( isset( $db_tables['network'] ) ) {
375
			$routines['network'][] = new WordPoints_Installer_DB_Tables(
376
				$db_tables['network']
377
				, 'base'
378
			);
379
		}
380
381
		return $routines;
382
	}