Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CommentController extends Controller |
||
14 | { |
||
15 | /** |
||
16 | * Get the set of comments associated with a Job. |
||
17 | * |
||
18 | * @param JobPoster $jobPoster |
||
1 ignored issue
–
show
|
|||
19 | * @return \Illuminate\Http\Response |
||
20 | */ |
||
21 | public function indexByJob(JobPoster $jobPoster) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Store a newly created resource in storage |
||
30 | * |
||
31 | * @param \App\Http\Requests\StoreComment $request Incoming request. |
||
32 | * @return \Illuminate\Http\Response |
||
33 | */ |
||
34 | public function store(StoreComment $request) |
||
43 |