| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function toArray($request) |
||
| 16 | { |
||
| 17 | return [ |
||
| 18 | 'type' => 'library', |
||
| 19 | 'id' => $this->id, |
||
|
|
|||
| 20 | 'name' => [ |
||
| 21 | 'nob' => $this->name, |
||
| 22 | 'nno' => $this->name, |
||
| 23 | 'eng' => $this->name_eng, |
||
| 24 | ], |
||
| 25 | 'created_at' => $this->created_at->toDateTimeString(), |
||
| 26 | 'updated_at' => $this->updated_at->toDateTimeString(), |
||
| 27 | ]; |
||
| 30 |