1 | <?php |
||
15 | class EventsController extends Controller |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Display a listing of the resource. |
||
20 | * |
||
21 | * @return \Illuminate\Http\Response |
||
22 | */ |
||
23 | public function index() |
||
28 | |||
29 | /** |
||
30 | * Show the form for creating a new resource. |
||
31 | * |
||
32 | * @return \Illuminate\Http\Response |
||
33 | */ |
||
34 | public function create() |
||
38 | |||
39 | /** |
||
40 | * Store a newly created resource in storage. |
||
41 | * |
||
42 | * @param \Illuminate\Http\Request $request |
||
43 | * @return \Illuminate\Http\Response |
||
44 | */ |
||
45 | public function store(Request $request) |
||
54 | |||
55 | /** |
||
56 | * Display the specified resource. |
||
57 | * |
||
58 | * @param Event $event |
||
59 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
60 | */ |
||
61 | public function show(Event $event) |
||
65 | |||
66 | /** |
||
67 | * Show the form for editing the specified resource. |
||
68 | * |
||
69 | * @param Event $event |
||
70 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
71 | */ |
||
72 | public function edit(Event $event) |
||
76 | |||
77 | /** |
||
78 | * Update the specified resource in storage. |
||
79 | * |
||
80 | * @param Request $request |
||
81 | * @param Event $event |
||
82 | * @return \Illuminate\Http\RedirectResponse |
||
83 | */ |
||
84 | public function update(Request $request, Event $event) |
||
91 | |||
92 | /** |
||
93 | * Remove the specified resource from storage. |
||
94 | * |
||
95 | * @param Event $event |
||
96 | * @return \Illuminate\Http\RedirectResponse |
||
97 | */ |
||
98 | public function destroy(Event $event) |
||
104 | } |
||
105 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.