| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public static function fromArray(array $notificationData) : self |
||
| 43 | { |
||
| 44 | return new self( |
||
| 45 | $notificationData['id'], |
||
| 46 | $notificationData['user_id'], |
||
| 47 | $notificationData['body'], |
||
| 48 | $notificationData['published_on'], |
||
| 49 | $notificationData['status'], |
||
| 50 | $notificationData['read_on'] |
||
| 51 | ); |
||
| 52 | } |
||
| 53 | |||
| 66 |