Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function toArray($request) |
||
18 | { |
||
19 | return [ |
||
20 | 'id' => $this->id, |
||
21 | 'job_poster_id' => $this->job_poster_id, |
||
22 | 'application_status_id' => $this->application_status_id, |
||
23 | 'citizenship_declaration_id' => $this->citizenship_declaration_id, |
||
24 | 'veteran_status_id' => $this->veteran_status_id, |
||
25 | 'applicant_id' => $this->applicant_id, |
||
26 | 'applicant_snapshot_id' => $this->applicant_snapshot_id, |
||
27 | 'language_requirement_confirmed' => $this->language_requirement_confirmed, |
||
28 | 'language_test_confirmed' => $this->language_test_confirmed, |
||
29 | 'education_requirement_confirmed' => $this->education_requirement_confirmed, |
||
30 | 'user_name' => $this->user_name, |
||
31 | 'user_email' => $this->user_email, |
||
32 | 'created_at' => $this->created_at, |
||
33 | 'updated_at' => $this->updated_at, |
||
34 | ]; |
||
37 |