1 | <?php |
||
8 | class EventRepetitionController extends Controller |
||
9 | { |
||
10 | /** |
||
11 | * Display a listing of the resource. |
||
12 | * |
||
13 | * @return \Illuminate\Http\Response |
||
14 | */ |
||
15 | 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 | * @return \Illuminate\Http\Response |
||
34 | */ |
||
35 | public function store(Request $request) |
||
46 | |||
47 | /** |
||
48 | * Display the specified resource. |
||
49 | * |
||
50 | * @param \App\EventRepetition $eventRepetition |
||
51 | * @return \Illuminate\Http\Response |
||
52 | */ |
||
53 | public function show(EventRepetition $eventRepetition) |
||
57 | |||
58 | /** |
||
59 | * Show the form for editing the specified resource. |
||
60 | * |
||
61 | * @param \App\EventRepetition $eventCategory |
||
62 | * @return \Illuminate\Http\Response |
||
63 | */ |
||
64 | public function edit(EventRepetition $eventRepetition) |
||
68 | |||
69 | /** |
||
70 | * Update the specified resource in storage. |
||
71 | * |
||
72 | * @param \Illuminate\Http\Request $request |
||
73 | * @param \App\EventRepetition $eventRepetition |
||
74 | * @return \Illuminate\Http\Response |
||
75 | */ |
||
76 | public function update(Request $request, EventRepetition $eventRepetition) |
||
87 | |||
88 | /** |
||
89 | * Remove the specified resource from storage. |
||
90 | * |
||
91 | * @param \App\EventCategory $eventCategory |
||
92 | * @return \Illuminate\Http\Response |
||
93 | */ |
||
94 | public function destroy(EventCategory $eventRepetition) |
||
100 | |||
101 | // ********************************************************************** |
||
102 | } |
||
103 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.