@@ -42,7 +42,6 @@ |
||
42 | 42 | /** |
43 | 43 | * Show the form for editing the specified resource. |
44 | 44 | * |
45 | - * @param int $id |
|
46 | 45 | * @return Response |
47 | 46 | */ |
48 | 47 | public function edit() |
@@ -41,7 +41,6 @@ |
||
41 | 41 | /** |
42 | 42 | * Display the specified resource. |
43 | 43 | * |
44 | - * @param int $course_id |
|
45 | 44 | * @return Response |
46 | 45 | */ |
47 | 46 | public function show() |
@@ -13,7 +13,7 @@ |
||
13 | 13 | /** |
14 | 14 | * Display a listing of the resource. |
15 | 15 | * |
16 | - * @return Response |
|
16 | + * @return string |
|
17 | 17 | */ |
18 | 18 | public function index() |
19 | 19 | { |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Create a new instance of the MatchHandler |
23 | 23 | * |
24 | - * @param GolfLeague\Storage\Round\RoundRepository $roundRepo |
|
24 | + * @param RoundRepository $roundRepo |
|
25 | 25 | * @return void |
26 | 26 | */ |
27 | 27 | public function __construct(RoundRepository $roundRepo) |
@@ -17,7 +17,6 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * Create a new instance of the MatchHandler |
19 | 19 | * |
20 | - * @param GolfLeague\Storage\Round\RoundRepository $roundRepo |
|
21 | 20 | * @return void |
22 | 21 | */ |
23 | 22 | public function __construct(HoleScoreRepository $holescoreRepo) |
@@ -28,7 +27,6 @@ discard block |
||
28 | 27 | /** |
29 | 28 | * Create an initial round for each player after a new match is created |
30 | 29 | * |
31 | - * @param Match $match |
|
32 | 30 | * @return void |
33 | 31 | */ |
34 | 32 | public function handle($round) |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | /** |
16 | 16 | * Loads our $matchRepo |
17 | 17 | * |
18 | - * @param MatchRepository $matchRepo |
|
18 | + * @param MatchRepository $matchRoundRepo |
|
19 | 19 | * @return MatchService |
20 | 20 | */ |
21 | 21 | public function __construct(MatchRoundRepository $matchRoundRepo, RoundRepository $roundRepo, MatchRepository $match) |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * Method to get match data from input Match id |
34 | 34 | * |
35 | - * @param mixed $matchdata |
|
35 | + * @param mixed $matchId |
|
36 | 36 | * @return JSON object |
37 | 37 | */ |
38 | 38 | public function getByMatch($matchId) |
@@ -21,7 +21,6 @@ |
||
21 | 21 | /** |
22 | 22 | * Loads our $matchRepo |
23 | 23 | * |
24 | - * @param MatchRepository $matchRepo |
|
25 | 24 | * @return MatchService |
26 | 25 | */ |
27 | 26 | public function __construct() |
@@ -21,7 +21,6 @@ |
||
21 | 21 | /** |
22 | 22 | * Display the specified resource. |
23 | 23 | * |
24 | - * @param int $id |
|
25 | 24 | * @return Response |
26 | 25 | */ |
27 | 26 | public function show($year) |
@@ -188,7 +188,7 @@ |
||
188 | 188 | /** |
189 | 189 | * Log the user out of the application. |
190 | 190 | * |
191 | - * @return Illuminate\Http\Response |
|
191 | + * @return Illuminate\Http\RedirectResponse |
|
192 | 192 | */ |
193 | 193 | public function logout() |
194 | 194 | { |