| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 66 | public static function create(array $payload): ReferralEvent |
||
| 67 | { |
||
| 68 | $senderId = $payload['sender']['id']; |
||
| 69 | $recipientId = $payload['recipient']['id']; |
||
| 70 | $timestamp = $payload['timestamp']; |
||
| 71 | $referral = Referral::create($payload['referral']); |
||
| 72 | |||
| 73 | return new static($senderId, $recipientId, $timestamp, $referral); |
||
| 74 | } |
||
| 76 |