1 | <?php namespace WITR\Http\Controllers; |
||
11 | class ShowController extends Controller { |
||
12 | |||
13 | /** |
||
14 | * Display a listing of the resource. |
||
15 | * |
||
16 | * @return Response |
||
17 | */ |
||
18 | public function schedule() |
||
23 | |||
24 | /** |
||
25 | * Show the form for creating a new resource. |
||
26 | * |
||
27 | * @return Response |
||
28 | */ |
||
29 | public function create() |
||
33 | |||
34 | /** |
||
35 | * Store a newly created resource in storage. |
||
36 | * |
||
37 | * @return Response |
||
38 | */ |
||
39 | public function store() |
||
43 | |||
44 | /** |
||
45 | * Display the specified resource. |
||
46 | * |
||
47 | * @param int $id |
||
48 | * @return Response |
||
49 | */ |
||
50 | public function show($id) |
||
54 | |||
55 | /** |
||
56 | * Show the form for editing the specified resource. |
||
57 | * |
||
58 | * @param int $id |
||
59 | * @return Response |
||
60 | */ |
||
61 | public function edit($id) |
||
65 | |||
66 | /** |
||
67 | * Update the specified resource in storage. |
||
68 | * |
||
69 | * @param int $id |
||
70 | * @return Response |
||
71 | */ |
||
72 | public function update($id) |
||
76 | |||
77 | /** |
||
78 | * Remove the specified resource from storage. |
||
79 | * |
||
80 | * @param int $id |
||
81 | * @return Response |
||
82 | */ |
||
83 | public function destroy($id) |
||
87 | |||
88 | } |
||
89 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.