Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | public function rules() |
||
40 | { |
||
41 | return [ |
||
42 | '*.id' => 'required|exists:application_reviews,id', |
||
43 | '*.job_application_id' => 'required|exists:job_applications,id', |
||
44 | '*.review_status_id' => 'nullable|exists:review_statuses,id', |
||
45 | '*.notes' => 'nullable|string', |
||
46 | '*.department_id' => 'nullable|exists:departments,id', |
||
47 | '*.director_email_sent' => 'boolean', |
||
48 | '*.reference_email_sent' => 'boolean', |
||
49 | ]; |
||
52 |