Code Duplication    Length = 9-9 lines in 2 locations

core/process/queries/QueryManagerMysqlMonocleAlternate.php 1 location

@@ 420-428 (lines=9) @@
417
		return array(); // Waiting for Monocle to store level
418
	}
419
420
	public function getTrainerLevelCount($team_id) {
421
		$levelData = array();
422
		for ($i = 5; $i <= 40; $i++) {
423
			if (!isset($levelData[$i])) {
424
				$levelData[$i] = 0;
425
			}
426
		}
427
		return $levelData; // Waiting for Monocle to store level
428
	}
429
430
431
	/////////

core/process/queries/QueryManagerPostgresqlMonocleAlternate.php 1 location

@@ 424-432 (lines=9) @@
421
		return array(); // Waiting for Monocle to store level
422
	}
423
424
	public function getTrainerLevelCount($team_id) {
425
		$levelData = array();
426
		for ($i = 5; $i <= 40; $i++) {
427
			if (!isset($levelData[$i])) {
428
				$levelData[$i] = 0;
429
			}
430
		}
431
		return $levelData; // Waiting for Monocle to store level
432
	}
433
434
435
	/////////