| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function toArray($request) |
||
| 17 | { |
||
| 18 | return [ |
||
| 19 | 'id' => $this->id, |
||
| 20 | 'version' => $this->version, |
||
| 21 | 'status' => $this->status, |
||
| 22 | 'dates' => [ |
||
| 23 | 'created' => Helper::getDates($this->created_at), |
||
| 24 | 'updated' => Helper::getDates($this->updated_at), |
||
| 25 | ], |
||
| 26 | 'logs_count' => $this->buildLogs()->count(), |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | } |
||
| 30 |