Code Duplication    Length = 9-9 lines in 2 locations

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
	/////////

core/process/queries/QueryManagerMysqlMonocleAlternate.php 1 location

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