| 1 | <?php |
||
| 7 | class UserDashboardController extends Controller |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Display a listing of the resource. |
||
| 11 | * |
||
| 12 | * @return \Illuminate\Http\Response |
||
| 13 | */ |
||
| 14 | public function index() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Show the form for creating a new resource. |
||
| 21 | * |
||
| 22 | * @return \Illuminate\Http\Response |
||
| 23 | */ |
||
| 24 | public function create() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Store a newly created resource in storage. |
||
| 31 | * |
||
| 32 | * @param \Illuminate\Http\Request $request |
||
| 33 | * |
||
| 34 | * @return \Illuminate\Http\Response |
||
| 35 | */ |
||
| 36 | public function store(Request $request) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Display the specified resource. |
||
| 43 | * |
||
| 44 | * @param int $id |
||
| 45 | * |
||
| 46 | * @return \Illuminate\Http\Response |
||
| 47 | */ |
||
| 48 | public function show($id) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Show the form for editing the specified resource. |
||
| 55 | * |
||
| 56 | * @param int $id |
||
| 57 | * |
||
| 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 | * |
||
| 71 | * @return \Illuminate\Http\Response |
||
| 72 | */ |
||
| 73 | public function update(Request $request, $id) |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Remove the specified resource from storage. |
||
| 80 | * |
||
| 81 | * @param int $id |
||
| 82 | * |
||
| 83 | * @return \Illuminate\Http\Response |
||
| 84 | */ |
||
| 85 | public function destroy($id) |
||
| 89 | } |
||
| 90 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.