| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 31 | public function transform(Notification $notification) | ||
| 32 |     { | ||
| 33 | return [ | ||
| 34 | 'id' => (int) $notification->notifications_id, | ||
| 35 | 'title' => $notification->title, | ||
| 36 | 'body' => $notification->body, | ||
| 37 | 'source' => $notification->source, | ||
| 38 | 'datetime' => $notification->datetime, | ||
| 39 | ]; | ||
| 40 | } | ||
| 41 | } | ||
| 42 |