Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | public function toArray() |
||
41 | { |
||
42 | return array_merge($this->wrappedObject->toArray(), [ |
||
43 | 'created_at' => $this->created_at(), |
||
44 | 'updated_at' => $this->updated_at(), |
||
45 | 'namespace' => $this->wrappedObject->group->path, |
||
46 | 'status_name' => $this->wrappedObject->humanStatus, |
||
47 | ]); |
||
48 | } |
||
49 | } |
||
50 |