1 | <?php namespace App\Http\Controllers; |
||
7 | class Training_Resource_Controller extends Controller |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * Display a listing of the resource. |
||
12 | * |
||
13 | * @return Response |
||
14 | */ |
||
15 | public function index() |
||
27 | |||
28 | /** |
||
29 | * Show the form for creating a new resource. |
||
30 | * |
||
31 | * @return Response |
||
32 | */ |
||
33 | public function create() |
||
37 | |||
38 | /** |
||
39 | * Store a newly created resource in storage. |
||
40 | * |
||
41 | * @return Response |
||
42 | */ |
||
43 | public function store() |
||
50 | |||
51 | /** |
||
52 | * Display the specified resource. |
||
53 | * |
||
54 | * @param int $id |
||
55 | * @return Response |
||
56 | */ |
||
57 | public function show($id) |
||
64 | |||
65 | /** |
||
66 | * Show the form for editing the specified resource. |
||
67 | * |
||
68 | * @param int $id |
||
69 | * @return Response |
||
70 | */ |
||
71 | public function edit($id) |
||
75 | |||
76 | /** |
||
77 | * Update the specified resource in storage. |
||
78 | * |
||
79 | * @param int $id |
||
80 | * @return Response |
||
81 | */ |
||
82 | public function update($id) |
||
96 | |||
97 | /** |
||
98 | * Remove the specified resource from storage. |
||
99 | * |
||
100 | * @param int $id |
||
101 | * @return Response |
||
102 | */ |
||
103 | public function destroy($id) |
||
107 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.