Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function transform($value) |
||
18 | { |
||
19 | return [ |
||
20 | 'case_id' => $value->getCaseId(), |
||
21 | 'subject' => $value->getSubject(), |
||
22 | 'group_id' => $value->getGroupId(), |
||
23 | 'staff_id' => $value->getStaffId(), |
||
24 | 'status' => $value->getStatus(), |
||
25 | 'priority' => $value->getPriority(), |
||
26 | 'language_id' => $value->getLanguageId(), |
||
27 | 'custom_fields' => $value->getCustomFields(), |
||
28 | 'add_labels' => $value->getAddLabels(), |
||
29 | 'delete_labels' => $value->getDeleteLabels(), |
||
30 | ]; |
||
31 | } |
||
32 | |||
42 |