Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function transform(ProductModel $model) |
||
30 | { |
||
31 | return [ |
||
32 | 'product_model_id' => (int) $model->product_model_id, |
||
|
|||
33 | |||
34 | 'title' => (string) $model->title, |
||
35 | 'model_name' => (string) $model->model_name, |
||
36 | 'code' => (string) $model->code, |
||
37 | 'status' => (int) $model->status, |
||
38 | |||
39 | 'created_by' => (string) $model->created_by, |
||
40 | 'created_at' => (string) $model->created_at, |
||
41 | 'created_ip' => (string) $model->created_ip, |
||
42 | 'updated_by' => (string) $model->updated_by, |
||
43 | 'updated_at' => (string) $model->updated_at, |
||
44 | 'updated_ip' => (string) $model->updated_ip, |
||
45 | ]; |
||
48 |