1 | <?php |
||
19 | class TreeController extends Controller |
||
20 | { |
||
21 | /** |
||
22 | * Display a listing of the resource. |
||
23 | * |
||
24 | * @return \Illuminate\Http\Response |
||
25 | */ |
||
26 | public function index() |
||
30 | |||
31 | /** |
||
32 | * Show the form for creating a new resource. |
||
33 | * |
||
34 | * @return \Illuminate\Http\Response |
||
35 | */ |
||
36 | public function create() |
||
40 | |||
41 | /** |
||
42 | * Store a newly created resource in storage. |
||
43 | * |
||
44 | * @param \Illuminate\Http\Request $request |
||
45 | * @return \Illuminate\Http\Response |
||
46 | */ |
||
47 | public function store(Request $request) |
||
51 | |||
52 | /** |
||
53 | * Display the specified resource. |
||
54 | * |
||
55 | * @param int $id |
||
56 | * @return \Illuminate\Http\Response |
||
57 | */ |
||
58 | public function show($id) |
||
62 | |||
63 | /** |
||
64 | * Show the form for editing the specified resource. |
||
65 | * |
||
66 | * @param int $id |
||
67 | * @return \Illuminate\Http\Response |
||
68 | */ |
||
69 | public function edit($id) |
||
73 | |||
74 | /** |
||
75 | * Update the specified resource in storage. |
||
76 | * |
||
77 | * @param \Illuminate\Http\Request $request |
||
78 | * @param int $id |
||
79 | * @return \Illuminate\Http\Response |
||
80 | */ |
||
81 | public function update(Request $request, $id) |
||
85 | |||
86 | /** |
||
87 | * Remove the specified resource from storage. |
||
88 | * |
||
89 | * @param int $id |
||
90 | * @return \Illuminate\Http\Response |
||
91 | */ |
||
92 | public function destroy($id) |
||
96 | } |
||
97 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.