| 1 | <?php |
||
| 8 | class SettingsController extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Display a listing of the resource. |
||
| 12 | * |
||
| 13 | * @return \Illuminate\Http\Response |
||
| 14 | */ |
||
| 15 | public function index() |
||
| 16 | { |
||
| 17 | // |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Show the form for creating a new resource. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Http\Response |
||
| 24 | */ |
||
| 25 | public function create() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Store a newly created resource in storage. |
||
| 32 | * |
||
| 33 | * @param \Illuminate\Http\Request $request |
||
| 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 | * @return \Illuminate\Http\Response |
||
| 46 | */ |
||
| 47 | public function show($id) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Show the form for editing the specified resource. |
||
| 54 | * |
||
| 55 | * @param int $id |
||
| 56 | * @return \Illuminate\Http\Response |
||
| 57 | */ |
||
| 58 | public function edit($id) |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Update the specified resource in storage. |
||
| 65 | * |
||
| 66 | * @param \Illuminate\Http\Request $request |
||
| 67 | * @param int $id |
||
| 68 | * @return \Illuminate\Http\Response |
||
| 69 | */ |
||
| 70 | public function update(Request $request, $id) |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Remove the specified resource from storage. |
||
| 77 | * |
||
| 78 | * @param int $id |
||
| 79 | * @return \Illuminate\Http\Response |
||
| 80 | */ |
||
| 81 | public function destroy($id) |
||
| 85 | } |
||
| 86 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.