We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | class DonorController extends Controller |
||
9 | { |
||
10 | /** |
||
11 | * Display a listing of the resource. |
||
12 | * |
||
13 | * @return \Illuminate\Http\Response |
||
14 | */ |
||
15 | public function index() |
||
21 | |||
22 | /** |
||
23 | * Show the form for creating a new resource. |
||
24 | * |
||
25 | * @return \Illuminate\Http\Response |
||
26 | */ |
||
27 | public function create() |
||
31 | |||
32 | /** |
||
33 | * Store a newly created resource in storage. |
||
34 | * |
||
35 | * @param \Illuminate\Http\Request $request |
||
36 | * @return \Illuminate\Http\Response |
||
37 | */ |
||
38 | public function store(Request $request) |
||
42 | |||
43 | /** |
||
44 | * Display the specified resource. |
||
45 | * |
||
46 | * @param int $id |
||
47 | * @return \Illuminate\Http\Response |
||
48 | */ |
||
49 | public function show($id) |
||
53 | |||
54 | /** |
||
55 | * Show the form for editing the specified resource. |
||
56 | * |
||
57 | * @param int $id |
||
58 | * @return \Illuminate\Http\Response |
||
59 | */ |
||
60 | public function edit($id) |
||
64 | |||
65 | /** |
||
66 | * Update the specified resource in storage. |
||
67 | * |
||
68 | * @param \Illuminate\Http\Request $request |
||
69 | * @param int $id |
||
70 | * @return \Illuminate\Http\Response |
||
71 | */ |
||
72 | public function update(Request $request, $id) |
||
76 | |||
77 | /** |
||
78 | * Remove the specified resource from storage. |
||
79 | * |
||
80 | * @param int $id |
||
81 | * @return \Illuminate\Http\Response |
||
82 | */ |
||
83 | public function destroy($id) |
||
87 | } |
||
88 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.