1 | <?php |
||
12 | class IssuesController extends Controller |
||
13 | { |
||
14 | |||
15 | protected $active_item = 'issues'; |
||
16 | /** |
||
17 | * Display a listing of the resource. |
||
18 | * |
||
19 | * @return \Illuminate\Http\Response |
||
20 | */ |
||
21 | |||
22 | public function index($namespace, $project_path) |
||
30 | |||
31 | public function new($namespace, $project_path) |
||
40 | |||
41 | /** |
||
42 | * Show the form for creating a new resource. |
||
43 | * |
||
44 | * @return \Illuminate\Http\Response |
||
45 | */ |
||
46 | public function create() |
||
50 | |||
51 | /** |
||
52 | * Store a newly created resource in storage. |
||
53 | * |
||
54 | * @param \Illuminate\Http\Request $request |
||
55 | * @return \Illuminate\Http\Response |
||
56 | */ |
||
57 | public function store(Request $request) |
||
61 | |||
62 | /** |
||
63 | * Display the specified resource. |
||
64 | * |
||
65 | * @param int $id |
||
66 | * @return \Illuminate\Http\Response |
||
67 | */ |
||
68 | public function show($id) |
||
72 | |||
73 | /** |
||
74 | * Show the form for editing the specified resource. |
||
75 | * |
||
76 | * @param int $id |
||
77 | * @return \Illuminate\Http\Response |
||
78 | */ |
||
79 | public function edit($id) |
||
83 | |||
84 | /** |
||
85 | * Update the specified resource in storage. |
||
86 | * |
||
87 | * @param \Illuminate\Http\Request $request |
||
88 | * @param int $id |
||
89 | * @return \Illuminate\Http\Response |
||
90 | */ |
||
91 | public function update(Request $request, $id) |
||
95 | |||
96 | /** |
||
97 | * Remove the specified resource from storage. |
||
98 | * |
||
99 | * @param int $id |
||
100 | * @return \Illuminate\Http\Response |
||
101 | */ |
||
102 | public function destroy($id) |
||
106 | } |
||
107 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.