1 | <?php |
||
16 | class ArticleController extends Controller |
||
17 | { |
||
18 | /** |
||
19 | * Display a listing of the resource. |
||
20 | * |
||
21 | * @return \Illuminate\Http\Response |
||
22 | */ |
||
23 | public function index() |
||
30 | |||
31 | /** |
||
32 | * Show the form for creating a new resource. |
||
33 | * |
||
34 | * @return \Illuminate\Http\Response |
||
35 | */ |
||
36 | public function create() |
||
42 | |||
43 | /** |
||
44 | * Store a newly created resource in storage. |
||
45 | * |
||
46 | * @param \Illuminate\Http\Request $request |
||
47 | * @return \Illuminate\Http\Response |
||
48 | */ |
||
49 | public function store(StoreArticle $request) |
||
61 | |||
62 | /** |
||
63 | * Display the specified resource. |
||
64 | * |
||
65 | * @param \App\Article $article |
||
66 | * @return \Illuminate\Http\Response |
||
67 | */ |
||
68 | public function show(ShowArticle $request, Article $article) |
||
73 | |||
74 | /** |
||
75 | * Display the specified resource. |
||
76 | * |
||
77 | * @param \App\Article $article |
||
78 | * @return \Illuminate\Http\Response |
||
79 | */ |
||
80 | public function show1($id) |
||
96 | |||
97 | /** |
||
98 | * Show the form for editing the specified resource. |
||
99 | * |
||
100 | * @param \App\Article $article |
||
101 | * @return \Illuminate\Http\Response |
||
102 | */ |
||
103 | public function edit(Article $article) |
||
109 | |||
110 | /** |
||
111 | * Update the specified resource in storage. |
||
112 | * |
||
113 | * @param \Illuminate\Http\Request $request |
||
114 | * @param \App\Article $article |
||
115 | * @return \Illuminate\Http\Response |
||
116 | */ |
||
117 | public function update(UpdateArticle $request, Article $article) |
||
124 | |||
125 | /** |
||
126 | * Remove the specified resource from storage. |
||
127 | * |
||
128 | * @param \App\Article $article |
||
129 | * @return \Illuminate\Http\Response |
||
130 | */ |
||
131 | public function destroy(DestroyArticle $request, Article $article) |
||
137 | } |
||
138 |
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.