Code Duplication    Length = 9-9 lines in 2 locations

core/process/queries/QueryManagerMysqlMonocleAlternate.php 1 location

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

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