1 | <?php |
||
10 | class MeetingsController extends Controller |
||
11 | { |
||
12 | 15 | public function __construct() |
|
18 | |||
19 | /** |
||
20 | * Display a listing of the resource. |
||
21 | * |
||
22 | * @param Request $request needed for get query to get only current planed meetings |
||
23 | * @return \Illuminate\Http\Response |
||
24 | */ |
||
25 | 6 | public function index(Request $request) |
|
37 | |||
38 | /** |
||
39 | * Display the specified resource. |
||
40 | * |
||
41 | * @param int $id |
||
42 | * @return \Illuminate\Http\Response |
||
43 | */ |
||
44 | 6 | public function show($id) |
|
50 | |||
51 | /** |
||
52 | * Store a newly created resource in storage. |
||
53 | * |
||
54 | * @param int $meetingId |
||
55 | * @return static |
||
56 | */ |
||
57 | public function showImage($meetingId) |
||
69 | |||
70 | private static function getImg(Meeting $meeting) |
||
77 | } |
||
78 |
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.