1 | <?php |
||
13 | class MeetingsController extends Controller |
||
14 | { |
||
15 | 45 | public function __construct() |
|
21 | |||
22 | /** |
||
23 | * Display a listing of the resource. |
||
24 | * ?current=1 -> to exclude old planed meetings |
||
25 | * |
||
26 | * @param int $groupId |
||
27 | * @param Request $request needed for get query to get only current planed meetings (to be planned are all retrieved) |
||
28 | * @return mixed |
||
29 | */ |
||
30 | 6 | public function index($groupId, Request $request) |
|
44 | |||
45 | /** |
||
46 | * Display the specified resource. |
||
47 | * |
||
48 | * @param int $groupId |
||
49 | * @param int $meetingId |
||
50 | * @return mixed |
||
51 | */ |
||
52 | 9 | public function show($groupId, $meetingId) |
|
62 | |||
63 | /** |
||
64 | * Store a newly created resource in storage. |
||
65 | * |
||
66 | * @param MeetingRequest $request |
||
67 | * @param int $groupId |
||
68 | * @return static |
||
69 | */ |
||
70 | 12 | public function store(MeetingRequest $request, $groupId) |
|
78 | |||
79 | /** |
||
80 | * Store a newly created resource in storage. |
||
81 | * |
||
82 | * @param Requests\Request $request |
||
83 | * @param int $groupId |
||
84 | * @param int $meetingId |
||
85 | * @return static |
||
86 | */ |
||
87 | public function storeImage(Requests\Request $request, $groupId, $meetingId) |
||
98 | |||
99 | private static function putImg($file, Meeting $meeting) |
||
103 | |||
104 | /** |
||
105 | * Store a newly created resource in storage. |
||
106 | * |
||
107 | * @param int $groupId |
||
108 | * @param int $meetingId |
||
109 | * @return static |
||
110 | */ |
||
111 | public function showImage($groupId, $meetingId) |
||
123 | |||
124 | private static function getImg(Meeting $meeting) |
||
131 | |||
132 | /** |
||
133 | * Update the specified resource in storage. |
||
134 | * |
||
135 | * @param MeetingRequest $request |
||
136 | * @param int $meetingId |
||
137 | * @param int $groupId |
||
138 | * @return mixed |
||
139 | */ |
||
140 | 9 | public function update(MeetingRequest $request, $groupId, $meetingId) |
|
153 | |||
154 | /** |
||
155 | * Remove the specified resource from storage. |
||
156 | * |
||
157 | * @param int $groupId |
||
158 | * @param int $meetingId |
||
159 | * @return mixed |
||
160 | */ |
||
161 | 9 | public function destroy($groupId, $meetingId) |
|
170 | } |
||
171 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.