@@ -3,36 +3,36 @@ |
||
| 3 | 3 | |
| 4 | 4 | interface LeagueStatistics { |
| 5 | 5 | |
| 6 | - public function topFiveLowestScores(); |
|
| 7 | - public function topFiveLowestScoresByYear($year); |
|
| 8 | - public function topFiveScoringAverageByYear($year); |
|
| 9 | - public function topFiveNetScoresByYear($year); |
|
| 10 | - public function mostSkinsByYear($year); |
|
| 11 | - public function totalEagles($year); |
|
| 12 | - public function totalBirdies($year); |
|
| 13 | - public function totalPars($year); |
|
| 14 | - public function totalBogeys($year); |
|
| 15 | - public function totalDoubles($year); |
|
| 16 | - public function totalOthers($year); |
|
| 6 | + public function topFiveLowestScores(); |
|
| 7 | + public function topFiveLowestScoresByYear($year); |
|
| 8 | + public function topFiveScoringAverageByYear($year); |
|
| 9 | + public function topFiveNetScoresByYear($year); |
|
| 10 | + public function mostSkinsByYear($year); |
|
| 11 | + public function totalEagles($year); |
|
| 12 | + public function totalBirdies($year); |
|
| 13 | + public function totalPars($year); |
|
| 14 | + public function totalBogeys($year); |
|
| 15 | + public function totalDoubles($year); |
|
| 16 | + public function totalOthers($year); |
|
| 17 | 17 | |
| 18 | - public function netScoresByPlayer($playerId); |
|
| 19 | - public function netScoresByPlayerTop($playerId,$number); |
|
| 20 | - public function netScoresByPlayerYear($playerId, $year); |
|
| 21 | - public function netScoresByPlayerTopYear($playerId,$top, $year); |
|
| 18 | + public function netScoresByPlayer($playerId); |
|
| 19 | + public function netScoresByPlayerTop($playerId,$number); |
|
| 20 | + public function netScoresByPlayerYear($playerId, $year); |
|
| 21 | + public function netScoresByPlayerTopYear($playerId,$top, $year); |
|
| 22 | 22 | |
| 23 | - public function netScoresLeague(); |
|
| 24 | - public function netScoresLeagueTop($number); |
|
| 25 | - public function netScoresLeagueYear($year); |
|
| 26 | - public function netScoresLeagueTopYear($top,$year); |
|
| 23 | + public function netScoresLeague(); |
|
| 24 | + public function netScoresLeagueTop($number); |
|
| 25 | + public function netScoresLeagueYear($year); |
|
| 26 | + public function netScoresLeagueTopYear($top,$year); |
|
| 27 | 27 | |
| 28 | - // Cumulative Net returns +/- relative to par |
|
| 29 | - public function netCumulative(); |
|
| 30 | - public function netCumulativeTop($top); |
|
| 31 | - public function netCumulativeByPlayer($playerId); |
|
| 32 | - public function netCumulativeByPlayerTop($playerId,$top); |
|
| 33 | - public function netCumulativeYear($year); |
|
| 34 | - public function netCumulativeTopYear($top,$year); |
|
| 35 | - public function netCumulativeByPlayerYear($playerId,$year); |
|
| 36 | - public function netCumulativeByPlayerTopYear($playerId,$top,$year); |
|
| 28 | + // Cumulative Net returns +/- relative to par |
|
| 29 | + public function netCumulative(); |
|
| 30 | + public function netCumulativeTop($top); |
|
| 31 | + public function netCumulativeByPlayer($playerId); |
|
| 32 | + public function netCumulativeByPlayerTop($playerId,$top); |
|
| 33 | + public function netCumulativeYear($year); |
|
| 34 | + public function netCumulativeTopYear($top,$year); |
|
| 35 | + public function netCumulativeByPlayerYear($playerId,$year); |
|
| 36 | + public function netCumulativeByPlayerTopYear($playerId,$top,$year); |
|
| 37 | 37 | |
| 38 | 38 | } |
| 39 | 39 | \ No newline at end of file |