Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
14 | public function validate(Request $request, Applicant $applicant) |
||
15 | { |
||
16 | $request->validate([ |
||
17 | 'degrees[:template][:id][area_of_study]' => [ |
||
18 | 'required', |
||
19 | |||
20 | ], |
||
21 | 'degrees[:template][:id][institution]' => [ |
||
22 | 'nullable', // Institution is nullable because applicant might have acquired the skills/knowledge on their own or some other way. |
||
23 | 'max:255' |
||
24 | ] |
||
28 | } |