| 1 | <?php |
||
| 13 | class CommentController extends AbstractApiController |
||
| 14 | { |
||
| 15 | use DispatchesJobs; |
||
| 16 | |||
| 17 | public function getComments() |
||
| 21 | |||
| 22 | public function getComment(Comment $comment) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Create a new comment. |
||
| 29 | * |
||
| 30 | * @param \Illuminate\Contracts\Auth\Guard $auth |
||
| 31 | * |
||
| 32 | * @return \Illuminate\Http\JsonResponse |
||
| 33 | */ |
||
| 34 | public function postComments(Guard $auth) |
||
| 50 | } |
||
| 51 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.