Code Duplication    Length = 9-9 lines in 2 locations

core/process/queries/QueryManagerPostgresqlMonocleAlternate.php 1 location

@@ 396-404 (lines=9) @@
393
		return array(); // Waiting for Monocle to store level
394
	}
395
396
	public function getTrainerLevelCount($team_id) {
397
		$levelData = array();
398
		for ($i = 5; $i <= 40; $i++) {
399
			if (!isset($levelData[$i])) {
400
				$levelData[$i] = 0;
401
			}
402
		}
403
		return $levelData; // Waiting for Monocle to store level
404
	}
405
406
407
	/////////

core/process/queries/QueryManagerMysqlMonocleAlternate.php 1 location

@@ 390-398 (lines=9) @@
387
		return array(); // Waiting for Monocle to store level
388
	}
389
390
	public function getTrainerLevelCount($team_id) {
391
		$levelData = array();
392
		for ($i = 5; $i <= 40; $i++) {
393
			if (!isset($levelData[$i])) {
394
				$levelData[$i] = 0;
395
			}
396
		}
397
		return $levelData; // Waiting for Monocle to store level
398
	}
399
400
401
	/////////