1 | <?php |
||
13 | class MeetingTimeslotsController extends Controller |
||
14 | { |
||
15 | /** |
||
16 | * ExampleController constructor. |
||
17 | */ |
||
18 | public function __construct() |
||
24 | |||
25 | /** |
||
26 | * Display a listing of the resource. |
||
27 | * |
||
28 | * @param int $groupId |
||
29 | * @param int $meetingId |
||
30 | * @param int $timeslotId |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function index($groupId, $meetingId, $timeslotId) |
||
37 | |||
38 | /** |
||
39 | * Display the specified resource. |
||
40 | * |
||
41 | * @param int $groupId |
||
42 | * @param int $meetingId |
||
43 | * @param int $timeslotId |
||
44 | * @return mixed |
||
45 | */ |
||
46 | public function show($groupId, $meetingId, $timeslotId) |
||
50 | |||
51 | /** |
||
52 | * Store a newly created resource in storage. |
||
53 | * |
||
54 | * @param MeetingRequest $request |
||
55 | * @param int $groupId |
||
56 | * @param int $meetingId |
||
57 | * @return static |
||
58 | */ |
||
59 | public function store(MeetingRequest $request, $groupId, $meetingId) |
||
63 | |||
64 | /** |
||
65 | * Update the specified resource in storage. |
||
66 | * |
||
67 | * @param MeetingRequest $request |
||
68 | * @param int $groupId |
||
69 | * @param int $meetingId |
||
70 | * @param int $timeslotId |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function update(MeetingRequest $request, $groupId, $meetingId, $timeslotId) |
||
76 | |||
77 | /** |
||
78 | * Remove the specified resource from storage. |
||
79 | * |
||
80 | * @param int $groupId |
||
81 | * @param int $meetingId |
||
82 | * @param int $timeslotId |
||
83 | * @return mixed |
||
84 | */ |
||
85 | public function destroy($groupId, $meetingId, $timeslotId) |
||
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.