1 | <?php |
||
9 | class MonitorController extends Controller |
||
10 | { |
||
11 | /** |
||
12 | * Display a listing of the resource. |
||
13 | * |
||
14 | * @return \Illuminate\Http\Response |
||
15 | */ |
||
16 | public function index() |
||
20 | |||
21 | /** |
||
22 | * Store a newly created resource in storage. |
||
23 | * |
||
24 | * @param \Illuminate\Http\Request $request |
||
25 | * @return \Illuminate\Http\Response |
||
26 | */ |
||
27 | 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 | * Update the specified resource in storage. |
||
54 | * |
||
55 | * @param \Illuminate\Http\Request $request |
||
56 | * @param int $id |
||
57 | * @return \Illuminate\Http\Response |
||
58 | */ |
||
59 | public function update(Request $request, $id) |
||
67 | |||
68 | /** |
||
69 | * Remove the specified resource from storage. |
||
70 | * |
||
71 | * @param int $id |
||
72 | * @return \Illuminate\Http\Response |
||
73 | */ |
||
74 | public function destroy($id) |
||
79 | } |
||
80 |
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.