Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function transform(Enrollment $model) |
||
22 | { |
||
23 | return [ |
||
24 | 'id' => (int) $model->id, |
||
25 | |||
26 | /* place your other model properties here */ |
||
27 | |||
28 | 'name' => $model->id, |
||
29 | 'validated' => (bool)$model->validated, |
||
30 | 'finished' => (bool)$model->finished, |
||
31 | 'study_id' => (int)$model->study_id, |
||
32 | 'course_id' => (int)$model->course_id, |
||
33 | 'classroom_id' => (int)$model->classroom_id, |
||
34 | |||
35 | |||
36 | 'created_at' => $model->created_at, |
||
37 | 'updated_at' => $model->updated_at |
||
38 | ]; |
||
39 | } |
||
40 | } |
||
41 |