| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class WorkSamplesController extends Controller |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Show the form for editing the logged-in applicant's Work Samples |
||
| 14 | * |
||
| 15 | * @param \Illuminate\Http\Request $request Incoming Request. |
||
| 16 | * @return \Illuminate\Http\RedirectResponse |
||
| 17 | */ |
||
| 18 | public function editAuthenticated(Request $request) |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Show the form for editing the applicant's work samples |
||
| 26 | * |
||
| 27 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
| 28 | * @param \App\Models\Applicant $applicant Incoming Applicant object. |
||
| 29 | * @return \Illuminate\Http\Response |
||
| 30 | */ |
||
| 31 | public function edit(Request $request, Applicant $applicant) |
||
| 50 |