Skip to content

Commit

Permalink
chore: concepts api controller comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nevinsm committed Oct 21, 2024
1 parent 60fc862 commit 0dbe7e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/Http/Controllers/API/ConceptController.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public function store(ConceptStoreRequest $request)
/**
* Display the specified resource.
*
* @param int $id
* @param \App\Concept $concept
* @return \Illuminate\Http\Response
*/
public function show(Concept $concept)
Expand Down Expand Up @@ -196,7 +196,8 @@ public function relateConcepts(Request $request, Concept $concept)
/**
* Display the specified resource.
*
* @param int $id
* @param \Illuminate\Http\Request $request
* @param \App\Concept $concept
* @return \Illuminate\Http\Response
*/
public function deprecate(Request $request, Concept $concept)
Expand All @@ -220,7 +221,7 @@ public function deprecate(Request $request, Concept $concept)
/**
* Remove the specified resource from storage.
*
* @param int $id
* @param \App\Concept $concept
* @return \Illuminate\Http\Response
*/
public function destroy(Concept $concept)
Expand Down

0 comments on commit 0dbe7e0

Please sign in to comment.