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