1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
use GolfLeague\Statistics\League\LeagueStatistics as LeagueStatistics; |
4
|
|
|
|
5
|
|
|
class LeagueStatisticsController extends \BaseController { |
|
|
|
|
6
|
|
|
|
7
|
|
|
public function __construct(LeagueStatistics $leagueStatistics) |
8
|
|
|
{ |
9
|
|
|
$this->leagueStatistics = $leagueStatistics; |
10
|
|
|
} |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* Display a listing of the resource. |
14
|
|
|
* |
15
|
|
|
* @return Response |
16
|
|
|
*/ |
17
|
|
|
public function index() |
18
|
|
|
{ |
19
|
|
|
return View::make('leagueStatistics'); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Show the form for creating a new resource. |
25
|
|
|
* |
26
|
|
|
* @return Response |
27
|
|
|
*/ |
28
|
|
|
public function create() |
29
|
|
|
{ |
30
|
|
|
// |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* Store a newly created resource in storage. |
36
|
|
|
* |
37
|
|
|
* @return Response |
38
|
|
|
*/ |
39
|
|
|
public function store() |
40
|
|
|
{ |
41
|
|
|
// |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Display the specified resource. |
47
|
|
|
* |
48
|
|
|
* @param int $id |
49
|
|
|
* @return Response |
50
|
|
|
*/ |
51
|
|
|
public function show($id) |
52
|
|
|
{ |
53
|
|
|
return $this->leagueStatistics{$id}(Input::get('year')); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* Show the form for editing the specified resource. |
59
|
|
|
* |
60
|
|
|
* @param int $id |
61
|
|
|
* @return Response |
62
|
|
|
*/ |
63
|
|
|
public function edit($id) |
64
|
|
|
{ |
65
|
|
|
return $id; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* Update the specified resource in storage. |
71
|
|
|
* |
72
|
|
|
* @param int $id |
73
|
|
|
* @return Response |
74
|
|
|
*/ |
75
|
|
|
public function update($id) |
76
|
|
|
{ |
77
|
|
|
// |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Remove the specified resource from storage. |
83
|
|
|
* |
84
|
|
|
* @param int $id |
85
|
|
|
* @return Response |
86
|
|
|
*/ |
87
|
|
|
public function destroy($id) |
88
|
|
|
{ |
89
|
|
|
// |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
public function netScores() |
93
|
|
|
{ |
94
|
|
|
return $this->leagueStatistics->netCumulativeByPlayer(2); |
95
|
|
|
//return $this->leagueStatistics->netScoresByPlayerTop(2,5); |
|
|
|
|
96
|
|
|
//return $this->leagueStatistics->netScoresByPlayer(1); |
|
|
|
|
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
public function netScoresLeague() |
100
|
|
|
{ |
101
|
|
|
return $this->leagueStatistics->netScoresLeague(); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function netScoresLeagueTop($top) |
105
|
|
|
{ |
106
|
|
|
return $this->leagueStatistics->netScoresLeagueTop($top); |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
public function netCumulativeByPlayer($playerId) |
110
|
|
|
{ |
111
|
|
|
return $this->leagueStatistics->netCumulativeByPlayer($playerId); |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
public function netCumulative() |
115
|
|
|
{ |
116
|
|
|
return $this->leagueStatistics->netCumulative(); |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
public function netCumulativeByPlayerTop($playerId, $top) |
120
|
|
|
{ |
121
|
|
|
return $this->leagueStatistics->netCumulativeByPlayerTop($playerId, $top); |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
public function netCumulativeTop($top) |
125
|
|
|
{ |
126
|
|
|
$data['data'] = $this->leagueStatistics->netCumulativeTop($top); |
|
|
|
|
127
|
|
|
return $data; |
128
|
|
|
} |
129
|
|
|
|
130
|
|
|
public function netCumulativeTopYear($top, $year) |
131
|
|
|
{ |
132
|
|
|
$data['data'] = $this->leagueStatistics->netCumulativeTopYear($top, $year); |
|
|
|
|
133
|
|
|
return $data; |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
} |
137
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.